##// END OF EJS Templates
Merge What's New entries from pull requests
Thomas Kluyver -
Show More
@@ -14,6 +14,24 b' This document describes in-flight development work.'
14 - `%%capture` cell magic now captures the rich display output, not just
14 - `%%capture` cell magic now captures the rich display output, not just
15 stdout/stderr
15 stdout/stderr
16
16
17 Select Notebook Name When Renaming a Notebook
18 ---------------------------------------------
19
20 The default notebook name is Untitled. It's unlikely you want to keep this name
21 or part of it when naming your notebook. Instead, IPython will select the text
22 in the input field so the user can easily type over the name and change it.
23
24 clear_output changes
25 --------------------
26
27 * There is no longer a 500ms delay when calling ``clear_output``.
28 * The ability to clear stderr and stdout individually was removed.
29 * A new ``wait`` flag that prevents ``clear_output`` from being executed until new
30 output is available. This eliminates animation flickering by allowing the
31 user to double buffer the output.
32 * The output div height is remembered when the ``wait=True`` flag is used.
33
34 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
17
35
18 Backwards incompatible changes
36 Backwards incompatible changes
19 ------------------------------
37 ------------------------------
@@ -24,3 +42,21 b' Backwards incompatible changes'
24 their `call` methods for them have been renamed to `preprocess`.
42 their `call` methods for them have been renamed to `preprocess`.
25 * The `call` methods of nbconvert post-processsors have been renamed to
43 * The `call` methods of nbconvert post-processsors have been renamed to
26 `postprocess`.
44 `postprocess`.
45
46 * The module ``IPython.core.fakemodule`` has been removed.
47
48 * The alias system has been reimplemented to use magic functions. There should be little
49 visible difference while automagics are enabled, as they are by default, but parts of the
50 :class:`~IPython.core.alias.AliasManager` API have been removed.
51
52 * We fixed an issue with switching between matplotlib inline and GUI backends,
53 but the fix requires matplotlib 1.1 or newer. So from now on, we consider
54 matplotlib 1.1 to be the minimally supported version for IPython. Older
55 versions for the most part will work, but we make no guarantees about it.
56
57 * The :command:`pycolor` command has been removed. We recommend the much more capable
58 :command:`pygmentize` command from the `Pygments <http://pygments.org/>`_ project.
59 If you need to keep the exact output of :command:`pycolor`, you can still use
60 ``python -m IPython.utils.PyColorize foo.py``.
61
62 .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. No newline at end of file
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now