##// END OF EJS Templates
Add note on gutting of prefilter to whatsnew docs.
Thomas Kluyver -
Show More
@@ -1,13 +1,23 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 The CodeMirror js library has been updated fron 2.23 to 2.32
7 The CodeMirror js library has been updated fron 2.23 to 2.32
8 this might induce a few changes in behavior of keymaps in the notebook,
8 this might induce a few changes in behavior of keymaps in the notebook,
9 especially intenting/deindenting blocks that is now bound to Ctrl+] and ctr+[
9 especially intenting/deindenting blocks that is now bound to Ctrl+] and ctr+[
10
10
11 * Exception types can now be displayed with a custom traceback, by defining a
11 * Exception types can now be displayed with a custom traceback, by defining a
12 ``_render_traceback_()`` method which returns a list of strings, each
12 ``_render_traceback_()`` method which returns a list of strings, each
13 containing one line of the traceback.
13 containing one line of the traceback.
14
15 Backwards incompatible changes
16 ------------------------------
17
18 * Calling :meth:`InteractiveShell.prefilter` will no longer perform static
19 transformations - the processing of escaped commands such as ``%magic`` and
20 ``!system``, and stripping input prompts from code blocks. This functionality
21 was duplicated in :mod:`IPython.core.inputsplitter`, and the latter version
22 was already what IPython relied on. A new API to transform input will be ready
23 before release.
General Comments 0
You need to be logged in to leave comments. Login now