##// END OF EJS Templates
Update whats new for dev and 7.21
Matthias Bussonnier -
Show More
@@ -134,6 +134,24 b' Currently, autosuggestions are only shown in the emacs or vi insert editing mode'
134 - The ctrl e, ctrl f, and alt f shortcuts work by default in emacs mode.
134 - The ctrl e, ctrl f, and alt f shortcuts work by default in emacs mode.
135 - To use these shortcuts in vi insert mode, you will have to create `custom keybindings in your config.py <https://github.com/mskar/setup/commit/2892fcee46f9f80ef7788f0749edc99daccc52f4/>`__.
135 - To use these shortcuts in vi insert mode, you will have to create `custom keybindings in your config.py <https://github.com/mskar/setup/commit/2892fcee46f9f80ef7788f0749edc99daccc52f4/>`__.
136
136
137
138 Show pinfo information in ipdb using "?" and "??"
139 -------------------------------------------------
140
141 In IPDB, it is now possible to show the information about an object using "?"
142 and "??", in much the same way it can be done when using the IPython prompt::
143
144 ipdb> partial?
145 Init signature: partial(self, /, *args, **kwargs)
146 Docstring:
147 partial(func, *args, **keywords) - new function with partial application
148 of the given arguments and keywords.
149 File: ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py
150 Type: type
151 Subclasses:
152
153 Previously, "pinfo" or "pinfo2" command had to be used for this purpose.
154
137 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
155 .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT.
138
156
139 As a reminder, IPython master has diverged from the 7.x branch, thus master may
157 As a reminder, IPython master has diverged from the 7.x branch, thus master may
@@ -2,6 +2,40 b''
2 7.x Series
2 7.x Series
3 ============
3 ============
4
4
5 .. _version 721:
6
7 IPython 7.21
8 ============
9
10 IPython 7.21 is the first release we have back on schedule of one release every
11 month; it contains a number of minor fixes and improvements, notably, the new
12 context command for ipdb
13
14
15 New "context" command in ipdb
16 -----------------------------
17
18 It is now possible to change the number of lines shown in the backtrace
19 information in ipdb using "context" command. :ghpull:`12826`
20
21 (thanks @MrMino, there are other improvement from them on master).
22
23 Other notable changes in IPython 7.21
24 -------------------------------------
25
26 - Fix some issues on new osx-arm64 :ghpull:`12804`, :ghpull:`12807`.
27 - Compatibility with Xeus-Python for debugger protocol, :ghpull:`12809`
28 - Misc docs fixes for compatibility and uniformity with Numpydoc.
29 :ghpull:`12824`
30
31
32 Thanks
33 ------
34
35 Many thanks to all the contributors to this release you can find all individual
36 contribution to this milestone `on github <https://github.com/ipython/ipython/milestone/83>`_.
37
38
5 .. _version 720:
39 .. _version 720:
6
40
7 IPython 7.20
41 IPython 7.20
1 NO CONTENT: file was removed
NO CONTENT: file was removed
1 NO CONTENT: file was removed
NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now