From an email by @pberkes:
Remove psignifit(..., debug=True) . Do we really need to delete the posterior information by default? The data occupies some space in memory and on disk, but users are likely to regret not having it as soon as they try doing a more advanced plot.
Specifically I would:
- Remove the "debug" option, and make
True the default
- Store the posterior, prior, and bounds data in the Results object, not in a "debug" dictionary
- Remove all the checks in the plot functions and other methods that look for the "debug" dictionary
- Make sure that tests check that the serialization of the Result object works even with the additional data
From an email by @pberkes: