##// END OF EJS Templates
Add note on gutting of prefilter to whatsnew docs.
Thomas Kluyver -
Show More
@@ -11,3 +11,13 b' especially intenting/deindenting blocks that is now bound to Ctrl+] and ctr+['
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