##// END OF EJS Templates
Polish whatsnew docs
Thomas Kluyver -
Show More
@@ -558,7 +558,7 b' Pull Requests (687):'
558 * :ghpull:`4492`: Configuration docs refresh
558 * :ghpull:`4492`: Configuration docs refresh
559 * :ghpull:`4508`: Fix some uses of map() in Qt console completion code.
559 * :ghpull:`4508`: Fix some uses of map() in Qt console completion code.
560 * :ghpull:`4498`: Daemon StreamCapturer
560 * :ghpull:`4498`: Daemon StreamCapturer
561 * :ghpull:`4499`: Skip clipboard test on *nix systems if headless.
561 * :ghpull:`4499`: Skip clipboard test on unix systems if headless.
562 * :ghpull:`4460`: Better clipboard handling, esp. with pywin32
562 * :ghpull:`4460`: Better clipboard handling, esp. with pywin32
563 * :ghpull:`4496`: Pass nbformat object to write call to save .py script
563 * :ghpull:`4496`: Pass nbformat object to write call to save .py script
564 * :ghpull:`4466`: various pandoc latex fixes
564 * :ghpull:`4466`: various pandoc latex fixes
@@ -166,9 +166,9 b' There are two changes to this behavior:'
166 Using dill to expand serialization support
166 Using dill to expand serialization support
167 ------------------------------------------
167 ------------------------------------------
168
168
169 adds :func:`~IPython.utils.pickleutil.use_dill` for allowing
169 The new function :func:`~IPython.utils.pickleutil.use_dill` allows
170 dill to extend serialization support in :mod:`IPython.parallel` (closures, etc.).
170 dill to extend serialization support in :mod:`IPython.parallel` (closures, etc.).
171 Also adds :meth:`DirectView.use_dill` convenience method for enabling dill
171 A :meth:`DirectView.use_dill` convenience method was also added, to enable dill
172 locally and on all engines with one call.
172 locally and on all engines with one call.
173
173
174 New IPython console lexer
174 New IPython console lexer
@@ -204,7 +204,7 b' Exceptions and Warnings'
204 ***********************
204 ***********************
205
205
206 Exceptions are no longer silenced when formatters fail.
206 Exceptions are no longer silenced when formatters fail.
207 Instead, these are turned into FormatterWarnings.
207 Instead, these are turned into a :class:`~IPython.core.formatters.FormatterWarning`.
208 A FormatterWarning will also be issued if a formatter returns data of an invalid type
208 A FormatterWarning will also be issued if a formatter returns data of an invalid type
209 (e.g. an integer for 'image/png').
209 (e.g. an integer for 'image/png').
210
210
@@ -219,8 +219,8 b' Other changes'
219 completion, Shift-Tab could still be used to invoke tooltip when inside
219 completion, Shift-Tab could still be used to invoke tooltip when inside
220 function signature and/or on selection.
220 function signature and/or on selection.
221
221
222 * ``object_info_request`` as been replaced by ``object_info`` for consistency in the javascript API.
222 * ``object_info_request`` has been replaced by ``object_info`` for consistency in the javascript API.
223 ``object_info`` as a simpler interface to register callback that is incompatible with ``object_info_request``.
223 ``object_info`` is a simpler interface to register callback that is incompatible with ``object_info_request``.
224
224
225 * Previous versions of IPython on Linux would use the XDG config directory,
225 * Previous versions of IPython on Linux would use the XDG config directory,
226 creating :file:`~/.config/ipython` by default. We have decided to go
226 creating :file:`~/.config/ipython` by default. We have decided to go
@@ -240,7 +240,7 b' Other changes'
240
240
241 * ``ipython history trim``: added ``--keep=<N>`` as an alias for the more verbose
241 * ``ipython history trim``: added ``--keep=<N>`` as an alias for the more verbose
242 ``--HistoryTrim.keep=<N>``
242 ``--HistoryTrim.keep=<N>``
243 * new ``ipython history clear`` subcommand, which is the same as the newly supported
243 * New ``ipython history clear`` subcommand, which is the same as the newly supported
244 ``ipython history trim --keep=0``
244 ``ipython history trim --keep=0``
245
245
246 * You can now run notebooks in an interactive session via ``%run notebook.ipynb``.
246 * You can now run notebooks in an interactive session via ``%run notebook.ipynb``.
@@ -280,9 +280,9 b' Backwards incompatible changes'
280 * Python 2.6 and 3.2 are no longer supported: the minimum required
280 * Python 2.6 and 3.2 are no longer supported: the minimum required
281 Python versions are now 2.7 and 3.3.
281 Python versions are now 2.7 and 3.3.
282 * The Transformer classes have been renamed to Preprocessor in nbconvert and
282 * The Transformer classes have been renamed to Preprocessor in nbconvert and
283 their `call` methods for them have been renamed to `preprocess`.
283 their ``call`` methods have been renamed to ``preprocess``.
284 * The `call` methods of nbconvert post-processsors have been renamed to
284 * The ``call`` methods of nbconvert post-processsors have been renamed to
285 `postprocess`.
285 ``postprocess``.
286
286
287 * The module ``IPython.core.fakemodule`` has been removed.
287 * The module ``IPython.core.fakemodule`` has been removed.
288
288
@@ -315,7 +315,7 b' Backwards incompatible changes'
315 raw = isp.source_raw
315 raw = isp.source_raw
316 transformed = isp.source_reset()
316 transformed = isp.source_reset()
317
317
318 * The Azure notebook manager was removed as it was no longer compatible with the notebook storage scheme
318 * The Azure notebook manager was removed as it was no longer compatible with the notebook storage scheme.
319
319
320 * Simplifying configurable URLs
320 * Simplifying configurable URLs
321
321
General Comments 0
You need to be logged in to leave comments. Login now