##// END OF EJS Templates
Merge pull request #4230 from fperez/mpl-backends...
Merge pull request #4230 from fperez/mpl-backends Switch correctly to the user's default matplotlib backend after inline. If '%matplotlib inline' was called first, we'd incorrectly revert to inline when plain '%matplotlib' was called, instead of loading the user's default GUI. If the user called '%matplotlib' first (without 'inline') it worked correctly, but not in the other order. The fix is to read the backend from the original defaults, not from the runtime data structure. Requires matplotlib 1.1

File last commit:

r12308:e17741fe merge
r12790:a562753f merge
Show More
development.rst
26 lines | 813 B | text/x-rst | RstLexer
Fernando Perez
Remove dev contents in what's new (that material is now 0.12).
r5793 =====================
Development version
Brian Granger
Cleanup of docs....
r2275 =====================
Fernando Perez
Remove dev contents in what's new (that material is now 0.12).
r5793 This document describes in-flight development work.
Thomas Kluyver
Describe the IPython situation in What's New docs.
r4147
Paul Ivanov
mention pr folder in whatsnew and CONTRIBUTING
r12242 .. warning::
Please do not edit this file by hand (doing so will likely cause merge
conflicts for other Pull Requests). Instead, create a new file in the
`docs/source/whatsnew/pr` folder
Paul Ivanov
add --no-display flag to %%capture...
r12225 - `%%capture` cell magic now captures the rich display output, not just
stdout/stderr
epatters
DOC: Add information about in-process kernels to What's New.
r8473
Thomas Kluyver
Add note on gutting of prefilter to whatsnew docs.
r8218 Backwards incompatible changes
------------------------------
Thomas Kluyver
Update docs for Python version support
r12147 * Python 2.6 and 3.2 are no longer supported: the minimum required
Python versions are now 2.7 and 3.3.
Paul Ivanov
replace 'transformer' with 'preprocessor'
r12219 * The Transformer classes have been renamed to Preprocessor in nbconvert and
their `call` methods for them have been renamed to `preprocess`.
Paul Ivanov
rename call methods to transform and postprocess...
r12218 * The `call` methods of nbconvert post-processsors have been renamed to
`postprocess`.