##// END OF EJS Templates
Merge pull request #4363 from pablooliveira/set_next_input-reuses-cell...
Merge pull request #4363 from pablooliveira/set_next_input-reuses-cell set_next_input: keep only last input when repeatedly called in a single cell change applied in general to payloads

File last commit:

r12900:9db8af5e
r12974:ebf12123 merge
Show More
development.rst
61 lines | 2.6 KiB | text/x-rst | RstLexer
Fernando Perez
Remove dev contents in what's new (that material is now 0.12).
r5793 =====================
Development version
Brian Granger
Cleanup of docs....
r2275 =====================
Fernando Perez
Remove dev contents in what's new (that material is now 0.12).
r5793 This document describes in-flight development work.
Thomas Kluyver
Describe the IPython situation in What's New docs.
r4147
Paul Ivanov
mention pr folder in whatsnew and CONTRIBUTING
r12242 .. warning::
Please do not edit this file by hand (doing so will likely cause merge
conflicts for other Pull Requests). Instead, create a new file in the
`docs/source/whatsnew/pr` folder
Paul Ivanov
add --no-display flag to %%capture...
r12225 - `%%capture` cell magic now captures the rich display output, not just
stdout/stderr
Thomas Kluyver
Merge What's New entries from pull requests
r12900 Select Notebook Name When Renaming a Notebook
---------------------------------------------
The default notebook name is Untitled. It's unlikely you want to keep this name
or part of it when naming your notebook. Instead, IPython will select the text
in the input field so the user can easily type over the name and change it.
clear_output changes
--------------------
* There is no longer a 500ms delay when calling ``clear_output``.
* The ability to clear stderr and stdout individually was removed.
* A new ``wait`` flag that prevents ``clear_output`` from being executed until new
output is available. This eliminates animation flickering by allowing the
user to double buffer the output.
* The output div height is remembered when the ``wait=True`` flag is used.
.. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
epatters
DOC: Add information about in-process kernels to What's New.
r8473
Thomas Kluyver
Add note on gutting of prefilter to whatsnew docs.
r8218 Backwards incompatible changes
------------------------------
Thomas Kluyver
Update docs for Python version support
r12147 * Python 2.6 and 3.2 are no longer supported: the minimum required
Python versions are now 2.7 and 3.3.
Paul Ivanov
replace 'transformer' with 'preprocessor'
r12219 * The Transformer classes have been renamed to Preprocessor in nbconvert and
their `call` methods for them have been renamed to `preprocess`.
Paul Ivanov
rename call methods to transform and postprocess...
r12218 * The `call` methods of nbconvert post-processsors have been renamed to
`postprocess`.
Thomas Kluyver
Merge What's New entries from pull requests
r12900
* The module ``IPython.core.fakemodule`` has been removed.
* The alias system has been reimplemented to use magic functions. There should be little
visible difference while automagics are enabled, as they are by default, but parts of the
:class:`~IPython.core.alias.AliasManager` API have been removed.
* We fixed an issue with switching between matplotlib inline and GUI backends,
but the fix requires matplotlib 1.1 or newer. So from now on, we consider
matplotlib 1.1 to be the minimally supported version for IPython. Older
versions for the most part will work, but we make no guarantees about it.
* The :command:`pycolor` command has been removed. We recommend the much more capable
:command:`pygmentize` command from the `Pygments <http://pygments.org/>`_ project.
If you need to keep the exact output of :command:`pycolor`, you can still use
``python -m IPython.utils.PyColorize foo.py``.
.. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT.