##// END OF EJS Templates
Merge What's New entries from pull requests
Thomas Kluyver -
Show More
@@ -1,26 +1,62 b''
1 =====================
1 =====================
2 Development version
2 Development version
3 =====================
3 =====================
4
4
5 This document describes in-flight development work.
5 This document describes in-flight development work.
6
6
7 .. warning::
7 .. warning::
8
8
9 Please do not edit this file by hand (doing so will likely cause merge
9 Please do not edit this file by hand (doing so will likely cause merge
10 conflicts for other Pull Requests). Instead, create a new file in the
10 conflicts for other Pull Requests). Instead, create a new file in the
11 `docs/source/whatsnew/pr` folder
11 `docs/source/whatsnew/pr` folder
12
12
13
13
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 ------------------------------
20
38
21 * Python 2.6 and 3.2 are no longer supported: the minimum required
39 * Python 2.6 and 3.2 are no longer supported: the minimum required
22 Python versions are now 2.7 and 3.3.
40 Python versions are now 2.7 and 3.3.
23 * The Transformer classes have been renamed to Preprocessor in nbconvert and
41 * The Transformer classes have been renamed to Preprocessor in nbconvert and
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