1=====================
2 Development version
3=====================
4
5This document describes in-flight development work.
6
7.. warning::
8
9    Please do not edit this file by hand (doing so will likely cause merge
10    conflicts for other Pull Requests). Instead, create a new file in the
11    `docs/source/whatsnew/pr` folder
12
13
14Released .... ...., 2019
15
16
17Need to be updated:
18
19.. toctree::
20   :maxdepth: 2
21   :glob:
22
23   pr/*
24
25
26
27
28Show pinfo information in ipdb using "?" and "??"
29-------------------------------------------------
30
31In IPDB, it is now possible to show the information about an object using "?"
32and "??", in much the same way it can be done when using the IPython prompt::
33
34    ipdb> partial?
35    Init signature: partial(self, /, *args, **kwargs)
36    Docstring:
37    partial(func, *args, **keywords) - new function with partial application
38    of the given arguments and keywords.
39    File:           ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py
40    Type:           type
41    Subclasses:
42
43Previously, "pinfo" or "pinfo2" command had to be used for this purpose.
44
45.. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
46
47As a reminder, IPython master has diverged from the 7.x branch, thus master may
48have more feature and API changes.
49
50Backwards incompatible changes
51------------------------------
52
53.. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT.
54