development.rst
53 lines
| 1.4 KiB
| text/x-rst
|
RstLexer
Matthias Bussonnier
|
r23561 | ===================== | ||
Development version | ||||
===================== | ||||
This document describes in-flight development work. | ||||
.. 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 | ||||
Matthias Bussonnier
|
r25263 | Released .... ...., 2019 | ||
Matthias Bussonnier
|
r24463 | |||
Need to be updated: | ||||
.. toctree:: | ||||
:maxdepth: 2 | ||||
Matthias Bussonnier
|
r24535 | :glob: | ||
Matthias Bussonnier
|
r24463 | |||
pr/* | ||||
Matthias Bussonnier
|
r25783 | |||
Matthias Bussonnier
|
r25859 | |||
Matthias Bussonnier
|
r26350 | |||
Show pinfo information in ipdb using "?" and "??" | ||||
------------------------------------------------- | ||||
In IPDB, it is now possible to show the information about an object using "?" | ||||
and "??", in much the same way it can be done when using the IPython prompt:: | ||||
ipdb> partial? | ||||
Init signature: partial(self, /, *args, **kwargs) | ||||
Docstring: | ||||
partial(func, *args, **keywords) - new function with partial application | ||||
of the given arguments and keywords. | ||||
File: ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py | ||||
Type: type | ||||
Subclasses: | ||||
Previously, "pinfo" or "pinfo2" command had to be used for this purpose. | ||||
Matthias Bussonnier
|
r23561 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. | ||
Matthias Bussonnier
|
r25646 | As a reminder, IPython master has diverged from the 7.x branch, thus master may | ||
have more feature and API changes. | ||||
Matthias Bussonnier
|
r23561 | Backwards incompatible changes | ||
------------------------------ | ||||
Matthias Bussonnier
|
r25263 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. | ||