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