##// END OF EJS Templates
Whats new typo
Matthias Bussonnier -
Show More
@@ -1,1631 +1,1629 b''
1 ============
1 ============
2 8.x Series
2 8.x Series
3 ============
3 ============
4
4
5 .. _version 8.12.0:
5 .. _version 8.12.0:
6
6
7 IPython 8.12
7 IPython 8.12
8 ------------
8 ------------
9
9
10 Hopefully slightly early release for IPython 8.12. Last Thursday of the month,
10 Hopefully slightly early release for IPython 8.12. Last Thursday of the month,
11 even if I guess it's likely already Friday somewhere in the pacific ocean.
11 even if I guess it's likely already Friday somewhere in the pacific ocean.
12
12
13 A number of PRs and bug fixes this month with close to 20 PRs merged !
13 A number of PRs and bug fixes this month with close to 20 PRs merged !
14
14
15
15
16 The IPython repo reached :ghpull:``14000`` !! Actually the PR that create those exact release
16 The IPython repo reached :ghpull:`14000` !! Actually the PR that create those exact release
17 note is :ghpull:`14000`. Ok, more issues and PR is not always better, and I'd
17 note is :ghpull:`14000`. Ok, more issues and PR is not always better, and I'd
18 love to have more time to close issues and Pull Requests.
18 love to have more time to close issues and Pull Requests.
19
19
20 Let's note that in less than 2 month JupyterCon is back, in Paris please visit
20 Let's note that in less than 2 month JupyterCon is back, in Paris please visit
21 `jupytercon.com <https://jupytercon.com>`__, and looking forward to see you
21 `jupytercon.com <https://jupytercon.com>`__, and looking forward to see you
22 there.
22 there.
23
23
24
25
26 Packagers should take note that ``typing_extension`` is now a mandatory dependency
24 Packagers should take note that ``typing_extension`` is now a mandatory dependency
27 for Python versions ``<3.10``.
25 for Python versions ``<3.10``.
28
26
29
27
30
28
31 Let's note also that according to `NEP29
29 Let's note also that according to `NEP29
32 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`__, It is soon time to
30 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`__, It is soon time to
33 stop support for Python 3.8 that will be release more than 3 and 1/2 years ago::
31 stop support for Python 3.8 that will be release more than 3 and 1/2 years ago::
34
32
35 On Apr 14, 2023 drop support for Python 3.8 (initially released on Oct 14, 2019)
33 On Apr 14, 2023 drop support for Python 3.8 (initially released on Oct 14, 2019)
36
34
37 Thus I am likely to stop advertising support for Python 3.8 in the next
35 Thus I am likely to stop advertising support for Python 3.8 in the next
38 release at the end of April.
36 release at the end of April.
39
37
40
38
41 Here are some miscellaneous updates of interest:
39 Here are some miscellaneous updates of interest:
42
40
43 - :ghpull:`13957` brings updates to the Qt integration, particularly for Qt6.
41 - :ghpull:`13957` brings updates to the Qt integration, particularly for Qt6.
44 - :ghpull:`13960` fixes the %debug magic command to give access to the local
42 - :ghpull:`13960` fixes the %debug magic command to give access to the local
45 scope.
43 scope.
46 - :ghpull:`13964` fixes some crashes with the new fast traceback code. Note that
44 - :ghpull:`13964` fixes some crashes with the new fast traceback code. Note that
47 there are still some issues with the fast traceback code, and I a, likely
45 there are still some issues with the fast traceback code, and I a, likely
48 to fix and tweak behavior.
46 to fix and tweak behavior.
49 - :ghpull:`13973` We are slowly migrating IPython internals to use proper type
47 - :ghpull:`13973` We are slowly migrating IPython internals to use proper type
50 objects/dataclasses instead of dictionaries to allow static typing checks.
48 objects/dataclasses instead of dictionaries to allow static typing checks.
51 These are technically public API and could lead to breakage, so please let us
49 These are technically public API and could lead to breakage, so please let us
52 know if that's the case and I'll mitigate.
50 know if that's the case and I'll mitigate.
53 - :ghpull:`13990`, :ghpull:`13991`, :ghpull:`13994` all improve keybinding and
51 - :ghpull:`13990`, :ghpull:`13991`, :ghpull:`13994` all improve keybinding and
54 shortcut configurability.
52 shortcut configurability.
55
53
56 As usual you can find the full list of PRs on GitHub under `the 8.12 milestone
54 As usual you can find the full list of PRs on GitHub under `the 8.12 milestone
57 <https://github.com/ipython/ipython/milestone/114?closed=1>`__.
55 <https://github.com/ipython/ipython/milestone/114?closed=1>`__.
58
56
59 We want to thank the D.E. Shaw group for requesting and sponsoring the work on
57 We want to thank the D.E. Shaw group for requesting and sponsoring the work on
60 the following big feature. We had productive discussions on how to best expose
58 the following big feature. We had productive discussions on how to best expose
61 this feature
59 this feature
62
60
63 Dynamic documentation dispatch
61 Dynamic documentation dispatch
64 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
62 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
65
63
66 We are experimenting with dynamic documentation dispatch for object attribute.
64 We are experimenting with dynamic documentation dispatch for object attribute.
67 See :ghissue:`13860`. The goal is to allow object to define documentation for
65 See :ghissue:`13860`. The goal is to allow object to define documentation for
68 their attributes, properties, even when those are dynamically defined with
66 their attributes, properties, even when those are dynamically defined with
69 `__getattr__`.
67 `__getattr__`.
70
68
71 In particular when those objects are base types it can be useful to show the
69 In particular when those objects are base types it can be useful to show the
72 documentation
70 documentation
73
71
74
72
75 .. code-block:: ipython
73 .. code-block:: ipython
76
74
77
75
78 In [1]: class User:
76 In [1]: class User:
79 ...:
77 ...:
80 ...: __custom_documentations__ = {
78 ...: __custom_documentations__ = {
81 ...: "first": "The first name of the user.",
79 ...: "first": "The first name of the user.",
82 ...: "last": "The last name of the user.",
80 ...: "last": "The last name of the user.",
83 ...: }
81 ...: }
84 ...:
82 ...:
85 ...: first:str
83 ...: first:str
86 ...: last:str
84 ...: last:str
87 ...:
85 ...:
88 ...: def __init__(self, first, last):
86 ...: def __init__(self, first, last):
89 ...: self.first = first
87 ...: self.first = first
90 ...: self.last = last
88 ...: self.last = last
91 ...:
89 ...:
92 ...: @property
90 ...: @property
93 ...: def full(self):
91 ...: def full(self):
94 ...: """`self.first` and `self.last` joined by a space."""
92 ...: """`self.first` and `self.last` joined by a space."""
95 ...: return self.first + " " + self.last
93 ...: return self.first + " " + self.last
96 ...:
94 ...:
97 ...:
95 ...:
98 ...: user = Person('Jane', 'Doe')
96 ...: user = Person('Jane', 'Doe')
99
97
100 In [2]: user.first?
98 In [2]: user.first?
101 Type: str
99 Type: str
102 String form: Jane
100 String form: Jane
103 Length: 4
101 Length: 4
104 Docstring: the first name of a the person object, a str
102 Docstring: the first name of a the person object, a str
105 Class docstring:
103 Class docstring:
106 ....
104 ....
107
105
108 In [3]: user.last?
106 In [3]: user.last?
109 Type: str
107 Type: str
110 String form: Doe
108 String form: Doe
111 Length: 3
109 Length: 3
112 Docstring: the last name, also a str
110 Docstring: the last name, also a str
113 ...
111 ...
114
112
115
113
116 We can see here the symmetry with IPython looking for the docstring on the
114 We can see here the symmetry with IPython looking for the docstring on the
117 properties:
115 properties:
118
116
119 .. code-block:: ipython
117 .. code-block:: ipython
120
118
121
119
122 In [4]: user.full?
120 In [4]: user.full?
123 HERE
121 HERE
124 Type: property
122 Type: property
125 String form: <property object at 0x102bb15d0>
123 String form: <property object at 0x102bb15d0>
126 Docstring: first and last join by a space
124 Docstring: first and last join by a space
127
125
128
126
129 Note that while in the above example we use a static dictionary, libraries may
127 Note that while in the above example we use a static dictionary, libraries may
130 decide to use a custom object that define ``__getitem__``, we caution against
128 decide to use a custom object that define ``__getitem__``, we caution against
131 using objects that would trigger computation to show documentation, but it is
129 using objects that would trigger computation to show documentation, but it is
132 sometime preferable for highly dynamic code that for example export ans API as
130 sometime preferable for highly dynamic code that for example export ans API as
133 object.
131 object.
134
132
135
133
136
134
137 .. _version 8.11.0:
135 .. _version 8.11.0:
138
136
139 IPython 8.11
137 IPython 8.11
140 ------------
138 ------------
141
139
142 Back on almost regular monthly schedule for IPython with end-of-month
140 Back on almost regular monthly schedule for IPython with end-of-month
143 really-late-Friday release to make sure some bugs are properly fixed.
141 really-late-Friday release to make sure some bugs are properly fixed.
144 Small addition of with a few new features, bugfix and UX improvements.
142 Small addition of with a few new features, bugfix and UX improvements.
145
143
146 This is a non-exhaustive list, but among other you will find:
144 This is a non-exhaustive list, but among other you will find:
147
145
148 Faster Traceback Highlighting
146 Faster Traceback Highlighting
149 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
147 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
150
148
151 Resurrection of pre-IPython-8 traceback highlighting code.
149 Resurrection of pre-IPython-8 traceback highlighting code.
152
150
153 Really long and complicated files were slow to highlight in traceback with
151 Really long and complicated files were slow to highlight in traceback with
154 IPython 8 despite upstream improvement that make many case better. Therefore
152 IPython 8 despite upstream improvement that make many case better. Therefore
155 starting with IPython 8.11 when one of the highlighted file is more than 10 000
153 starting with IPython 8.11 when one of the highlighted file is more than 10 000
156 line long by default, we'll fallback to a faster path that does not have all the
154 line long by default, we'll fallback to a faster path that does not have all the
157 features of highlighting failing AST nodes.
155 features of highlighting failing AST nodes.
158
156
159 This can be configures by setting the value of
157 This can be configures by setting the value of
160 ``IPython.code.ultratb.FAST_THRESHOLD`` to an arbitrary low or large value.
158 ``IPython.code.ultratb.FAST_THRESHOLD`` to an arbitrary low or large value.
161
159
162
160
163 Autoreload verbosity
161 Autoreload verbosity
164 ~~~~~~~~~~~~~~~~~~~~
162 ~~~~~~~~~~~~~~~~~~~~
165
163
166 We introduce more descriptive names for the ``%autoreload`` parameter:
164 We introduce more descriptive names for the ``%autoreload`` parameter:
167
165
168 - ``%autoreload now`` (also ``%autoreload``) - perform autoreload immediately.
166 - ``%autoreload now`` (also ``%autoreload``) - perform autoreload immediately.
169 - ``%autoreload off`` (also ``%autoreload 0``) - turn off autoreload.
167 - ``%autoreload off`` (also ``%autoreload 0``) - turn off autoreload.
170 - ``%autoreload explicit`` (also ``%autoreload 1``) - turn on autoreload only for modules
168 - ``%autoreload explicit`` (also ``%autoreload 1``) - turn on autoreload only for modules
171 whitelisted by ``%aimport`` statements.
169 whitelisted by ``%aimport`` statements.
172 - ``%autoreload all`` (also ``%autoreload 2``) - turn on autoreload for all modules except those
170 - ``%autoreload all`` (also ``%autoreload 2``) - turn on autoreload for all modules except those
173 blacklisted by ``%aimport`` statements.
171 blacklisted by ``%aimport`` statements.
174 - ``%autoreload complete`` (also ``%autoreload 3``) - all the fatures of ``all`` but also adding new
172 - ``%autoreload complete`` (also ``%autoreload 3``) - all the fatures of ``all`` but also adding new
175 objects from the imported modules (see
173 objects from the imported modules (see
176 IPython/extensions/tests/test_autoreload.py::test_autoload_newly_added_objects).
174 IPython/extensions/tests/test_autoreload.py::test_autoload_newly_added_objects).
177
175
178 The original designations (e.g. "2") still work, and these new ones are case-insensitive.
176 The original designations (e.g. "2") still work, and these new ones are case-insensitive.
179
177
180 Additionally, the option ``--print`` or ``-p`` can be added to the line to print the names of
178 Additionally, the option ``--print`` or ``-p`` can be added to the line to print the names of
181 modules being reloaded. Similarly, ``--log`` or ``-l`` will output the names to the logger at INFO
179 modules being reloaded. Similarly, ``--log`` or ``-l`` will output the names to the logger at INFO
182 level. Both can be used simultaneously.
180 level. Both can be used simultaneously.
183
181
184 The parsing logic for ``%aimport`` is now improved such that modules can be whitelisted and
182 The parsing logic for ``%aimport`` is now improved such that modules can be whitelisted and
185 blacklisted in the same line, e.g. it's now possible to call ``%aimport os, -math`` to include
183 blacklisted in the same line, e.g. it's now possible to call ``%aimport os, -math`` to include
186 ``os`` for ``%autoreload explicit`` and exclude ``math`` for modes ``all`` and ``complete``.
184 ``os`` for ``%autoreload explicit`` and exclude ``math`` for modes ``all`` and ``complete``.
187
185
188 Terminal shortcuts customization
186 Terminal shortcuts customization
189 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
187 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
190
188
191 Previously modifying shortcuts was only possible by hooking into startup files
189 Previously modifying shortcuts was only possible by hooking into startup files
192 and practically limited to adding new shortcuts or removing all shortcuts bound
190 and practically limited to adding new shortcuts or removing all shortcuts bound
193 to a specific key. This release enables users to override existing terminal
191 to a specific key. This release enables users to override existing terminal
194 shortcuts, disable them or add new keybindings.
192 shortcuts, disable them or add new keybindings.
195
193
196 For example, to set the :kbd:`right` to accept a single character of auto-suggestion
194 For example, to set the :kbd:`right` to accept a single character of auto-suggestion
197 you could use::
195 you could use::
198
196
199 my_shortcuts = [
197 my_shortcuts = [
200 {
198 {
201 "command": "IPython:auto_suggest.accept_character",
199 "command": "IPython:auto_suggest.accept_character",
202 "new_keys": ["right"]
200 "new_keys": ["right"]
203 }
201 }
204 ]
202 ]
205 %config TerminalInteractiveShell.shortcuts = my_shortcuts
203 %config TerminalInteractiveShell.shortcuts = my_shortcuts
206
204
207 You can learn more in :std:configtrait:`TerminalInteractiveShell.shortcuts`
205 You can learn more in :std:configtrait:`TerminalInteractiveShell.shortcuts`
208 configuration reference.
206 configuration reference.
209
207
210 Miscellaneous
208 Miscellaneous
211 ~~~~~~~~~~~~~
209 ~~~~~~~~~~~~~
212
210
213 - ``%gui`` should now support PySide6. :ghpull:`13864`
211 - ``%gui`` should now support PySide6. :ghpull:`13864`
214 - Cli shortcuts can now be configured :ghpull:`13928`, see above.
212 - Cli shortcuts can now be configured :ghpull:`13928`, see above.
215 (note that there might be an issue with prompt_toolkit 3.0.37 and shortcut configuration).
213 (note that there might be an issue with prompt_toolkit 3.0.37 and shortcut configuration).
216
214
217 - Capture output should now respect ``;`` semicolon to suppress output.
215 - Capture output should now respect ``;`` semicolon to suppress output.
218 :ghpull:`13940`
216 :ghpull:`13940`
219 - Base64 encoded images (in jupyter frontend), will not have trailing newlines.
217 - Base64 encoded images (in jupyter frontend), will not have trailing newlines.
220 :ghpull:`13941`
218 :ghpull:`13941`
221
219
222 As usual you can find the full list of PRs on GitHub under `the 8.11 milestone
220 As usual you can find the full list of PRs on GitHub under `the 8.11 milestone
223 <https://github.com/ipython/ipython/milestone/113?closed=1>`__.
221 <https://github.com/ipython/ipython/milestone/113?closed=1>`__.
224
222
225 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
223 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
226 work on IPython and related libraries.
224 work on IPython and related libraries.
227
225
228 .. _version 8.10.0:
226 .. _version 8.10.0:
229
227
230 IPython 8.10
228 IPython 8.10
231 ------------
229 ------------
232
230
233 Out of schedule release of IPython with minor fixes to patch a potential CVE-2023-24816.
231 Out of schedule release of IPython with minor fixes to patch a potential CVE-2023-24816.
234 This is a really low severity CVE that you most likely are not affected by unless:
232 This is a really low severity CVE that you most likely are not affected by unless:
235
233
236 - You are on windows.
234 - You are on windows.
237 - You have a custom build of Python without ``_ctypes``
235 - You have a custom build of Python without ``_ctypes``
238 - You cd or start IPython or Jupyter in untrusted directory which names may be
236 - You cd or start IPython or Jupyter in untrusted directory which names may be
239 valid shell commands.
237 valid shell commands.
240
238
241 You can read more on `the advisory
239 You can read more on `the advisory
242 <https://github.com/ipython/ipython/security/advisories/GHSA-29gw-9793-fvw7>`__.
240 <https://github.com/ipython/ipython/security/advisories/GHSA-29gw-9793-fvw7>`__.
243
241
244 In addition to fixing this CVE we also fix a couple of outstanding bugs and issues.
242 In addition to fixing this CVE we also fix a couple of outstanding bugs and issues.
245
243
246 As usual you can find the full list of PRs on GitHub under `the 8.10 milestone
244 As usual you can find the full list of PRs on GitHub under `the 8.10 milestone
247 <https://github.com/ipython/ipython/milestone/112?closed=1>`__.
245 <https://github.com/ipython/ipython/milestone/112?closed=1>`__.
248
246
249 In Particular:
247 In Particular:
250
248
251 - bump minimum numpy to `>=1.21` version following NEP29. :ghpull:`13930`
249 - bump minimum numpy to `>=1.21` version following NEP29. :ghpull:`13930`
252 - fix for compatibility with MyPy 1.0. :ghpull:`13933`
250 - fix for compatibility with MyPy 1.0. :ghpull:`13933`
253 - fix nbgrader stalling when IPython's ``showtraceback`` function is
251 - fix nbgrader stalling when IPython's ``showtraceback`` function is
254 monkeypatched. :ghpull:`13934`
252 monkeypatched. :ghpull:`13934`
255
253
256
254
257
255
258 As this release also contains those minimal changes in addition to fixing the
256 As this release also contains those minimal changes in addition to fixing the
259 CVE I decided to bump the minor version anyway.
257 CVE I decided to bump the minor version anyway.
260
258
261 This will not affect the normal release schedule, so IPython 8.11 is due in
259 This will not affect the normal release schedule, so IPython 8.11 is due in
262 about 2 weeks.
260 about 2 weeks.
263
261
264 .. _version 8.9.0:
262 .. _version 8.9.0:
265
263
266 IPython 8.9.0
264 IPython 8.9.0
267 -------------
265 -------------
268
266
269 Second release of IPython in 2023, last Friday of the month, we are back on
267 Second release of IPython in 2023, last Friday of the month, we are back on
270 track. This is a small release with a few bug-fixes, and improvements, mostly
268 track. This is a small release with a few bug-fixes, and improvements, mostly
271 with respect to terminal shortcuts.
269 with respect to terminal shortcuts.
272
270
273
271
274 The biggest improvement for 8.9 is a drastic amelioration of the
272 The biggest improvement for 8.9 is a drastic amelioration of the
275 auto-suggestions sponsored by D.E. Shaw and implemented by the more and more
273 auto-suggestions sponsored by D.E. Shaw and implemented by the more and more
276 active contributor `@krassowski <https://github.com/krassowski>`.
274 active contributor `@krassowski <https://github.com/krassowski>`.
277
275
278 - ``right`` accepts a single character from suggestion
276 - ``right`` accepts a single character from suggestion
279 - ``ctrl+right`` accepts a semantic token (macos default shortcuts take
277 - ``ctrl+right`` accepts a semantic token (macos default shortcuts take
280 precedence and need to be disabled to make this work)
278 precedence and need to be disabled to make this work)
281 - ``backspace`` deletes a character and resumes hinting autosuggestions
279 - ``backspace`` deletes a character and resumes hinting autosuggestions
282 - ``ctrl-left`` accepts suggestion and moves cursor left one character.
280 - ``ctrl-left`` accepts suggestion and moves cursor left one character.
283 - ``backspace`` deletes a character and resumes hinting autosuggestions
281 - ``backspace`` deletes a character and resumes hinting autosuggestions
284 - ``down`` moves to suggestion to later in history when no lines are present below the cursors.
282 - ``down`` moves to suggestion to later in history when no lines are present below the cursors.
285 - ``up`` moves to suggestion from earlier in history when no lines are present above the cursor.
283 - ``up`` moves to suggestion from earlier in history when no lines are present above the cursor.
286
284
287 This is best described by the Gif posted by `@krassowski
285 This is best described by the Gif posted by `@krassowski
288 <https://github.com/krassowski>`, and in the PR itself :ghpull:`13888`.
286 <https://github.com/krassowski>`, and in the PR itself :ghpull:`13888`.
289
287
290 .. image:: ../_images/autosuggest.gif
288 .. image:: ../_images/autosuggest.gif
291
289
292 Please report any feedback in order for us to improve the user experience.
290 Please report any feedback in order for us to improve the user experience.
293 In particular we are also working on making the shortcuts configurable.
291 In particular we are also working on making the shortcuts configurable.
294
292
295 If you are interested in better terminal shortcuts, I also invite you to
293 If you are interested in better terminal shortcuts, I also invite you to
296 participate in issue `13879
294 participate in issue `13879
297 <https://github.com/ipython/ipython/issues/13879>`__.
295 <https://github.com/ipython/ipython/issues/13879>`__.
298
296
299
297
300 As we follow `NEP29
298 As we follow `NEP29
301 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`__, next version of
299 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`__, next version of
302 IPython will officially stop supporting numpy 1.20, and will stop supporting
300 IPython will officially stop supporting numpy 1.20, and will stop supporting
303 Python 3.8 after April release.
301 Python 3.8 after April release.
304
302
305 As usual you can find the full list of PRs on GitHub under `the 8.9 milestone
303 As usual you can find the full list of PRs on GitHub under `the 8.9 milestone
306 <https://github.com/ipython/ipython/milestone/111?closed=1>`__.
304 <https://github.com/ipython/ipython/milestone/111?closed=1>`__.
307
305
308
306
309 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
307 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
310 work on IPython and related libraries.
308 work on IPython and related libraries.
311
309
312 .. _version 8.8.0:
310 .. _version 8.8.0:
313
311
314 IPython 8.8.0
312 IPython 8.8.0
315 -------------
313 -------------
316
314
317 First release of IPython in 2023 as there was no release at the end of
315 First release of IPython in 2023 as there was no release at the end of
318 December.
316 December.
319
317
320 This is an unusually big release (relatively speaking) with more than 15 Pull
318 This is an unusually big release (relatively speaking) with more than 15 Pull
321 Requests merged.
319 Requests merged.
322
320
323 Of particular interest are:
321 Of particular interest are:
324
322
325 - :ghpull:`13852` that replaces the greedy completer and improves
323 - :ghpull:`13852` that replaces the greedy completer and improves
326 completion, in particular for dictionary keys.
324 completion, in particular for dictionary keys.
327 - :ghpull:`13858` that adds ``py.typed`` to ``setup.cfg`` to make sure it is
325 - :ghpull:`13858` that adds ``py.typed`` to ``setup.cfg`` to make sure it is
328 bundled in wheels.
326 bundled in wheels.
329 - :ghpull:`13869` that implements tab completions for IPython options in the
327 - :ghpull:`13869` that implements tab completions for IPython options in the
330 shell when using `argcomplete <https://github.com/kislyuk/argcomplete>`. I
328 shell when using `argcomplete <https://github.com/kislyuk/argcomplete>`. I
331 believe this also needs a recent version of Traitlets.
329 believe this also needs a recent version of Traitlets.
332 - :ghpull:`13865` makes the ``inspector`` class of `InteractiveShell`
330 - :ghpull:`13865` makes the ``inspector`` class of `InteractiveShell`
333 configurable.
331 configurable.
334 - :ghpull:`13880` that removes minor-version entrypoints as the minor version
332 - :ghpull:`13880` that removes minor-version entrypoints as the minor version
335 entry points that would be included in the wheel would be the one of the
333 entry points that would be included in the wheel would be the one of the
336 Python version that was used to build the ``whl`` file.
334 Python version that was used to build the ``whl`` file.
337
335
338 In no particular order, the rest of the changes update the test suite to be
336 In no particular order, the rest of the changes update the test suite to be
339 compatible with Pygments 2.14, various docfixes, testing on more recent python
337 compatible with Pygments 2.14, various docfixes, testing on more recent python
340 versions and various updates.
338 versions and various updates.
341
339
342 As usual you can find the full list of PRs on GitHub under `the 8.8 milestone
340 As usual you can find the full list of PRs on GitHub under `the 8.8 milestone
343 <https://github.com/ipython/ipython/milestone/110>`__.
341 <https://github.com/ipython/ipython/milestone/110>`__.
344
342
345 Many thanks to @krassowski for the many PRs and @jasongrout for reviewing and
343 Many thanks to @krassowski for the many PRs and @jasongrout for reviewing and
346 merging contributions.
344 merging contributions.
347
345
348 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
346 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
349 work on IPython and related libraries.
347 work on IPython and related libraries.
350
348
351 .. _version 8.7.0:
349 .. _version 8.7.0:
352
350
353 IPython 8.7.0
351 IPython 8.7.0
354 -------------
352 -------------
355
353
356
354
357 Small release of IPython with a couple of bug fixes and new features for this
355 Small release of IPython with a couple of bug fixes and new features for this
358 month. Next month is the end of year, it is unclear if there will be a release
356 month. Next month is the end of year, it is unclear if there will be a release
359 close to the new year's eve, or if the next release will be at the end of January.
357 close to the new year's eve, or if the next release will be at the end of January.
360
358
361 Here are a few of the relevant fixes,
359 Here are a few of the relevant fixes,
362 as usual you can find the full list of PRs on GitHub under `the 8.7 milestone
360 as usual you can find the full list of PRs on GitHub under `the 8.7 milestone
363 <https://github.com/ipython/ipython/pulls?q=milestone%3A8.7>`__.
361 <https://github.com/ipython/ipython/pulls?q=milestone%3A8.7>`__.
364
362
365
363
366 - :ghpull:`13834` bump the minimum prompt toolkit to 3.0.11.
364 - :ghpull:`13834` bump the minimum prompt toolkit to 3.0.11.
367 - IPython shipped with the ``py.typed`` marker now, and we are progressively
365 - IPython shipped with the ``py.typed`` marker now, and we are progressively
368 adding more types. :ghpull:`13831`
366 adding more types. :ghpull:`13831`
369 - :ghpull:`13817` add configuration of code blacks formatting.
367 - :ghpull:`13817` add configuration of code blacks formatting.
370
368
371
369
372 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
370 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
373 work on IPython and related libraries.
371 work on IPython and related libraries.
374
372
375
373
376 .. _version 8.6.0:
374 .. _version 8.6.0:
377
375
378 IPython 8.6.0
376 IPython 8.6.0
379 -------------
377 -------------
380
378
381 Back to a more regular release schedule (at least I try), as Friday is
379 Back to a more regular release schedule (at least I try), as Friday is
382 already over by more than 24h hours. This is a slightly bigger release with a
380 already over by more than 24h hours. This is a slightly bigger release with a
383 few new features that contain no less than 25 PRs.
381 few new features that contain no less than 25 PRs.
384
382
385 We'll notably found a couple of non negligible changes:
383 We'll notably found a couple of non negligible changes:
386
384
387 The ``install_ext`` and related functions have been removed after being
385 The ``install_ext`` and related functions have been removed after being
388 deprecated for years. You can use pip to install extensions. ``pip`` did not
386 deprecated for years. You can use pip to install extensions. ``pip`` did not
389 exist when ``install_ext`` was introduced. You can still load local extensions
387 exist when ``install_ext`` was introduced. You can still load local extensions
390 without installing them. Just set your ``sys.path`` for example. :ghpull:`13744`
388 without installing them. Just set your ``sys.path`` for example. :ghpull:`13744`
391
389
392 IPython now has extra entry points that use the major *and minor* version of
390 IPython now has extra entry points that use the major *and minor* version of
393 python. For some of you this means that you can do a quick ``ipython3.10`` to
391 python. For some of you this means that you can do a quick ``ipython3.10`` to
394 launch IPython from the Python 3.10 interpreter, while still using Python 3.11
392 launch IPython from the Python 3.10 interpreter, while still using Python 3.11
395 as your main Python. :ghpull:`13743`
393 as your main Python. :ghpull:`13743`
396
394
397 The completer matcher API has been improved. See :ghpull:`13745`. This should
395 The completer matcher API has been improved. See :ghpull:`13745`. This should
398 improve the type inference and improve dict keys completions in many use case.
396 improve the type inference and improve dict keys completions in many use case.
399 Thanks ``@krassowski`` for all the work, and the D.E. Shaw group for sponsoring
397 Thanks ``@krassowski`` for all the work, and the D.E. Shaw group for sponsoring
400 it.
398 it.
401
399
402 The color of error nodes in tracebacks can now be customized. See
400 The color of error nodes in tracebacks can now be customized. See
403 :ghpull:`13756`. This is a private attribute until someone finds the time to
401 :ghpull:`13756`. This is a private attribute until someone finds the time to
404 properly add a configuration option. Note that with Python 3.11 that also shows
402 properly add a configuration option. Note that with Python 3.11 that also shows
405 the relevant nodes in traceback, it would be good to leverage this information
403 the relevant nodes in traceback, it would be good to leverage this information
406 (plus the "did you mean" info added on attribute errors). But that's likely work
404 (plus the "did you mean" info added on attribute errors). But that's likely work
407 I won't have time to do before long, so contributions welcome.
405 I won't have time to do before long, so contributions welcome.
408
406
409 As we follow NEP 29, we removed support for numpy 1.19 :ghpull:`13760`.
407 As we follow NEP 29, we removed support for numpy 1.19 :ghpull:`13760`.
410
408
411
409
412 The ``open()`` function present in the user namespace by default will now refuse
410 The ``open()`` function present in the user namespace by default will now refuse
413 to open the file descriptors 0,1,2 (stdin, out, err), to avoid crashing IPython.
411 to open the file descriptors 0,1,2 (stdin, out, err), to avoid crashing IPython.
414 This mostly occurs in teaching context when incorrect values get passed around.
412 This mostly occurs in teaching context when incorrect values get passed around.
415
413
416
414
417 The ``?``, ``??``, and corresponding ``pinfo``, ``pinfo2`` magics can now find
415 The ``?``, ``??``, and corresponding ``pinfo``, ``pinfo2`` magics can now find
418 objects inside arrays. That is to say, the following now works::
416 objects inside arrays. That is to say, the following now works::
419
417
420
418
421 >>> def my_func(*arg, **kwargs):pass
419 >>> def my_func(*arg, **kwargs):pass
422 >>> container = [my_func]
420 >>> container = [my_func]
423 >>> container[0]?
421 >>> container[0]?
424
422
425
423
426 If ``container`` define a custom ``getitem``, this __will__ trigger the custom
424 If ``container`` define a custom ``getitem``, this __will__ trigger the custom
427 method. So don't put side effects in your ``getitems``. Thanks to the D.E. Shaw
425 method. So don't put side effects in your ``getitems``. Thanks to the D.E. Shaw
428 group for the request and sponsoring the work.
426 group for the request and sponsoring the work.
429
427
430
428
431 As usual you can find the full list of PRs on GitHub under `the 8.6 milestone
429 As usual you can find the full list of PRs on GitHub under `the 8.6 milestone
432 <https://github.com/ipython/ipython/pulls?q=milestone%3A8.6>`__.
430 <https://github.com/ipython/ipython/pulls?q=milestone%3A8.6>`__.
433
431
434 Thanks to all hacktoberfest contributors, please contribute to
432 Thanks to all hacktoberfest contributors, please contribute to
435 `closember.org <https://closember.org/>`__.
433 `closember.org <https://closember.org/>`__.
436
434
437 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
435 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
438 work on IPython and related libraries.
436 work on IPython and related libraries.
439
437
440 .. _version 8.5.0:
438 .. _version 8.5.0:
441
439
442 IPython 8.5.0
440 IPython 8.5.0
443 -------------
441 -------------
444
442
445 First release since a couple of month due to various reasons and timing preventing
443 First release since a couple of month due to various reasons and timing preventing
446 me for sticking to the usual monthly release the last Friday of each month. This
444 me for sticking to the usual monthly release the last Friday of each month. This
447 is of non negligible size as it has more than two dozen PRs with various fixes
445 is of non negligible size as it has more than two dozen PRs with various fixes
448 an bug fixes.
446 an bug fixes.
449
447
450 Many thanks to everybody who contributed PRs for your patience in review and
448 Many thanks to everybody who contributed PRs for your patience in review and
451 merges.
449 merges.
452
450
453 Here is a non-exhaustive list of changes that have been implemented for IPython
451 Here is a non-exhaustive list of changes that have been implemented for IPython
454 8.5.0. As usual you can find the full list of issues and PRs tagged with `the
452 8.5.0. As usual you can find the full list of issues and PRs tagged with `the
455 8.5 milestone
453 8.5 milestone
456 <https://github.com/ipython/ipython/pulls?q=is%3Aclosed+milestone%3A8.5+>`__.
454 <https://github.com/ipython/ipython/pulls?q=is%3Aclosed+milestone%3A8.5+>`__.
457
455
458 - Added a shortcut for accepting auto suggestion. The End key shortcut for
456 - Added a shortcut for accepting auto suggestion. The End key shortcut for
459 accepting auto-suggestion This binding works in Vi mode too, provided
457 accepting auto-suggestion This binding works in Vi mode too, provided
460 ``TerminalInteractiveShell.emacs_bindings_in_vi_insert_mode`` is set to be
458 ``TerminalInteractiveShell.emacs_bindings_in_vi_insert_mode`` is set to be
461 ``True`` :ghpull:`13566`.
459 ``True`` :ghpull:`13566`.
462
460
463 - No popup in window for latex generation when generating latex (e.g. via
461 - No popup in window for latex generation when generating latex (e.g. via
464 `_latex_repr_`) no popup window is shows under Windows. :ghpull:`13679`
462 `_latex_repr_`) no popup window is shows under Windows. :ghpull:`13679`
465
463
466 - Fixed error raised when attempting to tab-complete an input string with
464 - Fixed error raised when attempting to tab-complete an input string with
467 consecutive periods or forward slashes (such as "file:///var/log/...").
465 consecutive periods or forward slashes (such as "file:///var/log/...").
468 :ghpull:`13675`
466 :ghpull:`13675`
469
467
470 - Relative filenames in Latex rendering :
468 - Relative filenames in Latex rendering :
471 The `latex_to_png_dvipng` command internally generates input and output file
469 The `latex_to_png_dvipng` command internally generates input and output file
472 arguments to `latex` and `dvipis`. These arguments are now generated as
470 arguments to `latex` and `dvipis`. These arguments are now generated as
473 relative files to the current working directory instead of absolute file
471 relative files to the current working directory instead of absolute file
474 paths. This solves a problem where the current working directory contains
472 paths. This solves a problem where the current working directory contains
475 characters that are not handled properly by `latex` and `dvips`. There are
473 characters that are not handled properly by `latex` and `dvips`. There are
476 no changes to the user API. :ghpull:`13680`
474 no changes to the user API. :ghpull:`13680`
477
475
478 - Stripping decorators bug: Fixed bug which meant that ipython code blocks in
476 - Stripping decorators bug: Fixed bug which meant that ipython code blocks in
479 restructured text documents executed with the ipython-sphinx extension
477 restructured text documents executed with the ipython-sphinx extension
480 skipped any lines of code containing python decorators. :ghpull:`13612`
478 skipped any lines of code containing python decorators. :ghpull:`13612`
481
479
482 - Allow some modules with frozen dataclasses to be reloaded. :ghpull:`13732`
480 - Allow some modules with frozen dataclasses to be reloaded. :ghpull:`13732`
483 - Fix paste magic on wayland. :ghpull:`13671`
481 - Fix paste magic on wayland. :ghpull:`13671`
484 - show maxlen in deque's repr. :ghpull:`13648`
482 - show maxlen in deque's repr. :ghpull:`13648`
485
483
486 Restore line numbers for Input
484 Restore line numbers for Input
487 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
485 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
488
486
489 Line number information in tracebacks from input are restored.
487 Line number information in tracebacks from input are restored.
490 Line numbers from input were removed during the transition to v8 enhanced traceback reporting.
488 Line numbers from input were removed during the transition to v8 enhanced traceback reporting.
491
489
492 So, instead of::
490 So, instead of::
493
491
494 ---------------------------------------------------------------------------
492 ---------------------------------------------------------------------------
495 ZeroDivisionError Traceback (most recent call last)
493 ZeroDivisionError Traceback (most recent call last)
496 Input In [3], in <cell line: 1>()
494 Input In [3], in <cell line: 1>()
497 ----> 1 myfunc(2)
495 ----> 1 myfunc(2)
498
496
499 Input In [2], in myfunc(z)
497 Input In [2], in myfunc(z)
500 1 def myfunc(z):
498 1 def myfunc(z):
501 ----> 2 foo.boo(z-1)
499 ----> 2 foo.boo(z-1)
502
500
503 File ~/code/python/ipython/foo.py:3, in boo(x)
501 File ~/code/python/ipython/foo.py:3, in boo(x)
504 2 def boo(x):
502 2 def boo(x):
505 ----> 3 return 1/(1-x)
503 ----> 3 return 1/(1-x)
506
504
507 ZeroDivisionError: division by zero
505 ZeroDivisionError: division by zero
508
506
509 The error traceback now looks like::
507 The error traceback now looks like::
510
508
511 ---------------------------------------------------------------------------
509 ---------------------------------------------------------------------------
512 ZeroDivisionError Traceback (most recent call last)
510 ZeroDivisionError Traceback (most recent call last)
513 Cell In [3], line 1
511 Cell In [3], line 1
514 ----> 1 myfunc(2)
512 ----> 1 myfunc(2)
515
513
516 Cell In [2], line 2, in myfunc(z)
514 Cell In [2], line 2, in myfunc(z)
517 1 def myfunc(z):
515 1 def myfunc(z):
518 ----> 2 foo.boo(z-1)
516 ----> 2 foo.boo(z-1)
519
517
520 File ~/code/python/ipython/foo.py:3, in boo(x)
518 File ~/code/python/ipython/foo.py:3, in boo(x)
521 2 def boo(x):
519 2 def boo(x):
522 ----> 3 return 1/(1-x)
520 ----> 3 return 1/(1-x)
523
521
524 ZeroDivisionError: division by zero
522 ZeroDivisionError: division by zero
525
523
526 or, with xmode=Plain::
524 or, with xmode=Plain::
527
525
528 Traceback (most recent call last):
526 Traceback (most recent call last):
529 Cell In [12], line 1
527 Cell In [12], line 1
530 myfunc(2)
528 myfunc(2)
531 Cell In [6], line 2 in myfunc
529 Cell In [6], line 2 in myfunc
532 foo.boo(z-1)
530 foo.boo(z-1)
533 File ~/code/python/ipython/foo.py:3 in boo
531 File ~/code/python/ipython/foo.py:3 in boo
534 return 1/(1-x)
532 return 1/(1-x)
535 ZeroDivisionError: division by zero
533 ZeroDivisionError: division by zero
536
534
537 :ghpull:`13560`
535 :ghpull:`13560`
538
536
539 New setting to silence warning if working inside a virtual environment
537 New setting to silence warning if working inside a virtual environment
540 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
538 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
541
539
542 Previously, when starting IPython in a virtual environment without IPython installed (so IPython from the global environment is used), the following warning was printed:
540 Previously, when starting IPython in a virtual environment without IPython installed (so IPython from the global environment is used), the following warning was printed:
543
541
544 Attempting to work in a virtualenv. If you encounter problems, please install IPython inside the virtualenv.
542 Attempting to work in a virtualenv. If you encounter problems, please install IPython inside the virtualenv.
545
543
546 This warning can be permanently silenced by setting ``c.InteractiveShell.warn_venv`` to ``False`` (the default is ``True``).
544 This warning can be permanently silenced by setting ``c.InteractiveShell.warn_venv`` to ``False`` (the default is ``True``).
547
545
548 :ghpull:`13706`
546 :ghpull:`13706`
549
547
550 -------
548 -------
551
549
552 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
550 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
553 work on IPython and related libraries.
551 work on IPython and related libraries.
554
552
555
553
556 .. _version 8.4.0:
554 .. _version 8.4.0:
557
555
558 IPython 8.4.0
556 IPython 8.4.0
559 -------------
557 -------------
560
558
561 As for 7.34, this version contains a single fix: fix uncaught BdbQuit exceptions on ipdb
559 As for 7.34, this version contains a single fix: fix uncaught BdbQuit exceptions on ipdb
562 exit :ghpull:`13668`, and a single typo fix in documentation: :ghpull:`13682`
560 exit :ghpull:`13668`, and a single typo fix in documentation: :ghpull:`13682`
563
561
564 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
562 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
565 work on IPython and related libraries.
563 work on IPython and related libraries.
566
564
567
565
568 .. _version 8.3.0:
566 .. _version 8.3.0:
569
567
570 IPython 8.3.0
568 IPython 8.3.0
571 -------------
569 -------------
572
570
573 - :ghpull:`13625`, using ``?``, ``??``, ``*?`` will not call
571 - :ghpull:`13625`, using ``?``, ``??``, ``*?`` will not call
574 ``set_next_input`` as most frontend allow proper multiline editing and it was
572 ``set_next_input`` as most frontend allow proper multiline editing and it was
575 causing issues for many users of multi-cell frontends. This has been backported to 7.33
573 causing issues for many users of multi-cell frontends. This has been backported to 7.33
576
574
577
575
578 - :ghpull:`13600`, ``pre_run_*``-hooks will now have a ``cell_id`` attribute on
576 - :ghpull:`13600`, ``pre_run_*``-hooks will now have a ``cell_id`` attribute on
579 the info object when frontend provides it. This has been backported to 7.33
577 the info object when frontend provides it. This has been backported to 7.33
580
578
581 - :ghpull:`13624`, fixed :kbd:`End` key being broken after accepting an
579 - :ghpull:`13624`, fixed :kbd:`End` key being broken after accepting an
582 auto-suggestion.
580 auto-suggestion.
583
581
584 - :ghpull:`13657` fixed an issue where history from different sessions would be mixed.
582 - :ghpull:`13657` fixed an issue where history from different sessions would be mixed.
585
583
586 .. _version 8.2.0:
584 .. _version 8.2.0:
587
585
588 IPython 8.2.0
586 IPython 8.2.0
589 -------------
587 -------------
590
588
591 IPython 8.2 mostly bring bugfixes to IPython.
589 IPython 8.2 mostly bring bugfixes to IPython.
592
590
593 - Auto-suggestion can now be elected with the ``end`` key. :ghpull:`13566`
591 - Auto-suggestion can now be elected with the ``end`` key. :ghpull:`13566`
594 - Some traceback issues with ``assert etb is not None`` have been fixed. :ghpull:`13588`
592 - Some traceback issues with ``assert etb is not None`` have been fixed. :ghpull:`13588`
595 - History is now pulled from the sqitel database and not from in-memory.
593 - History is now pulled from the sqitel database and not from in-memory.
596 In particular when using the ``%paste`` magic, the content of the pasted text will
594 In particular when using the ``%paste`` magic, the content of the pasted text will
597 be part of the history and not the verbatim text ``%paste`` anymore. :ghpull:`13592`
595 be part of the history and not the verbatim text ``%paste`` anymore. :ghpull:`13592`
598 - Fix ``Ctrl-\\`` exit cleanup :ghpull:`13603`
596 - Fix ``Ctrl-\\`` exit cleanup :ghpull:`13603`
599 - Fixes to ``ultratb`` ipdb support when used outside of IPython. :ghpull:`13498`
597 - Fixes to ``ultratb`` ipdb support when used outside of IPython. :ghpull:`13498`
600
598
601
599
602 I am still trying to fix and investigate :ghissue:`13598`, which seems to be
600 I am still trying to fix and investigate :ghissue:`13598`, which seems to be
603 random, and would appreciate help if you find a reproducible minimal case. I've
601 random, and would appreciate help if you find a reproducible minimal case. I've
604 tried to make various changes to the codebase to mitigate it, but a proper fix
602 tried to make various changes to the codebase to mitigate it, but a proper fix
605 will be difficult without understanding the cause.
603 will be difficult without understanding the cause.
606
604
607
605
608 All the issues on pull-requests for this release can be found in the `8.2
606 All the issues on pull-requests for this release can be found in the `8.2
609 milestone. <https://github.com/ipython/ipython/milestone/100>`__ . And some
607 milestone. <https://github.com/ipython/ipython/milestone/100>`__ . And some
610 documentation only PR can be found as part of the `7.33 milestone
608 documentation only PR can be found as part of the `7.33 milestone
611 <https://github.com/ipython/ipython/milestone/101>`__ (currently not released).
609 <https://github.com/ipython/ipython/milestone/101>`__ (currently not released).
612
610
613 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
611 Thanks to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
614 work on IPython and related libraries.
612 work on IPython and related libraries.
615
613
616 .. _version 8.1.1:
614 .. _version 8.1.1:
617
615
618 IPython 8.1.1
616 IPython 8.1.1
619 -------------
617 -------------
620
618
621 Fix an issue with virtualenv and Python 3.8 introduced in 8.1
619 Fix an issue with virtualenv and Python 3.8 introduced in 8.1
622
620
623 Revert :ghpull:`13537` (fix an issue with symlinks in virtualenv) that raises an
621 Revert :ghpull:`13537` (fix an issue with symlinks in virtualenv) that raises an
624 error in Python 3.8, and fixed in a different way in :ghpull:`13559`.
622 error in Python 3.8, and fixed in a different way in :ghpull:`13559`.
625
623
626 .. _version 8.1:
624 .. _version 8.1:
627
625
628 IPython 8.1.0
626 IPython 8.1.0
629 -------------
627 -------------
630
628
631 IPython 8.1 is the first minor release after 8.0 and fixes a number of bugs and
629 IPython 8.1 is the first minor release after 8.0 and fixes a number of bugs and
632 updates a few behaviors that were problematic with the 8.0 as with many new major
630 updates a few behaviors that were problematic with the 8.0 as with many new major
633 release.
631 release.
634
632
635 Note that beyond the changes listed here, IPython 8.1.0 also contains all the
633 Note that beyond the changes listed here, IPython 8.1.0 also contains all the
636 features listed in :ref:`version 7.32`.
634 features listed in :ref:`version 7.32`.
637
635
638 - Misc and multiple fixes around quotation auto-closing. It is now disabled by
636 - Misc and multiple fixes around quotation auto-closing. It is now disabled by
639 default. Run with ``TerminalInteractiveShell.auto_match=True`` to re-enabled
637 default. Run with ``TerminalInteractiveShell.auto_match=True`` to re-enabled
640 - Require pygments>=2.4.0 :ghpull:`13459`, this was implicit in the code, but
638 - Require pygments>=2.4.0 :ghpull:`13459`, this was implicit in the code, but
641 is now explicit in ``setup.cfg``/``setup.py``
639 is now explicit in ``setup.cfg``/``setup.py``
642 - Docs improvement of ``core.magic_arguments`` examples. :ghpull:`13433`
640 - Docs improvement of ``core.magic_arguments`` examples. :ghpull:`13433`
643 - Multi-line edit executes too early with await. :ghpull:`13424`
641 - Multi-line edit executes too early with await. :ghpull:`13424`
644
642
645 - ``black`` is back as an optional dependency, and autoformatting disabled by
643 - ``black`` is back as an optional dependency, and autoformatting disabled by
646 default until some fixes are implemented (black improperly reformat magics).
644 default until some fixes are implemented (black improperly reformat magics).
647 :ghpull:`13471` Additionally the ability to use ``yapf`` as a code
645 :ghpull:`13471` Additionally the ability to use ``yapf`` as a code
648 reformatter has been added :ghpull:`13528` . You can use
646 reformatter has been added :ghpull:`13528` . You can use
649 ``TerminalInteractiveShell.autoformatter="black"``,
647 ``TerminalInteractiveShell.autoformatter="black"``,
650 ``TerminalInteractiveShell.autoformatter="yapf"`` to re-enable auto formating
648 ``TerminalInteractiveShell.autoformatter="yapf"`` to re-enable auto formating
651 with black, or switch to yapf.
649 with black, or switch to yapf.
652
650
653 - Fix and issue where ``display`` was not defined.
651 - Fix and issue where ``display`` was not defined.
654
652
655 - Auto suggestions are now configurable. Currently only
653 - Auto suggestions are now configurable. Currently only
656 ``AutoSuggestFromHistory`` (default) and ``None``. new provider contribution
654 ``AutoSuggestFromHistory`` (default) and ``None``. new provider contribution
657 welcomed. :ghpull:`13475`
655 welcomed. :ghpull:`13475`
658
656
659 - multiple packaging/testing improvement to simplify downstream packaging
657 - multiple packaging/testing improvement to simplify downstream packaging
660 (xfail with reasons, try to not access network...).
658 (xfail with reasons, try to not access network...).
661
659
662 - Update deprecation. ``InteractiveShell.magic`` internal method has been
660 - Update deprecation. ``InteractiveShell.magic`` internal method has been
663 deprecated for many years but did not emit a warning until now.
661 deprecated for many years but did not emit a warning until now.
664
662
665 - internal ``appended_to_syspath`` context manager has been deprecated.
663 - internal ``appended_to_syspath`` context manager has been deprecated.
666
664
667 - fix an issue with symlinks in virtualenv :ghpull:`13537` (Reverted in 8.1.1)
665 - fix an issue with symlinks in virtualenv :ghpull:`13537` (Reverted in 8.1.1)
668
666
669 - Fix an issue with vim mode, where cursor would not be reset on exit :ghpull:`13472`
667 - Fix an issue with vim mode, where cursor would not be reset on exit :ghpull:`13472`
670
668
671 - ipython directive now remove only known pseudo-decorators :ghpull:`13532`
669 - ipython directive now remove only known pseudo-decorators :ghpull:`13532`
672
670
673 - ``IPython/lib/security`` which used to be used for jupyter notebook has been
671 - ``IPython/lib/security`` which used to be used for jupyter notebook has been
674 removed.
672 removed.
675
673
676 - Fix an issue where ``async with`` would execute on new lines. :ghpull:`13436`
674 - Fix an issue where ``async with`` would execute on new lines. :ghpull:`13436`
677
675
678
676
679 We want to remind users that IPython is part of the Jupyter organisations, and
677 We want to remind users that IPython is part of the Jupyter organisations, and
680 thus governed by a Code of Conduct. Some of the behavior we have seen on GitHub is not acceptable.
678 thus governed by a Code of Conduct. Some of the behavior we have seen on GitHub is not acceptable.
681 Abuse and non-respectful comments on discussion will not be tolerated.
679 Abuse and non-respectful comments on discussion will not be tolerated.
682
680
683 Many thanks to all the contributors to this release, many of the above fixed issues and
681 Many thanks to all the contributors to this release, many of the above fixed issues and
684 new features were done by first time contributors, showing there is still
682 new features were done by first time contributors, showing there is still
685 plenty of easy contribution possible in IPython
683 plenty of easy contribution possible in IPython
686 . You can find all individual contributions
684 . You can find all individual contributions
687 to this milestone `on github <https://github.com/ipython/ipython/milestone/91>`__.
685 to this milestone `on github <https://github.com/ipython/ipython/milestone/91>`__.
688
686
689 Thanks as well to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
687 Thanks as well to the `D. E. Shaw group <https://deshaw.com/>`__ for sponsoring
690 work on IPython and related libraries. In particular the Lazy autoloading of
688 work on IPython and related libraries. In particular the Lazy autoloading of
691 magics that you will find described in the 7.32 release notes.
689 magics that you will find described in the 7.32 release notes.
692
690
693
691
694 .. _version 8.0.1:
692 .. _version 8.0.1:
695
693
696 IPython 8.0.1 (CVE-2022-21699)
694 IPython 8.0.1 (CVE-2022-21699)
697 ------------------------------
695 ------------------------------
698
696
699 IPython 8.0.1, 7.31.1 and 5.11 are security releases that change some default
697 IPython 8.0.1, 7.31.1 and 5.11 are security releases that change some default
700 values in order to prevent potential Execution with Unnecessary Privileges.
698 values in order to prevent potential Execution with Unnecessary Privileges.
701
699
702 Almost all version of IPython looks for configuration and profiles in current
700 Almost all version of IPython looks for configuration and profiles in current
703 working directory. Since IPython was developed before pip and environments
701 working directory. Since IPython was developed before pip and environments
704 existed it was used a convenient way to load code/packages in a project
702 existed it was used a convenient way to load code/packages in a project
705 dependant way.
703 dependant way.
706
704
707 In 2022, it is not necessary anymore, and can lead to confusing behavior where
705 In 2022, it is not necessary anymore, and can lead to confusing behavior where
708 for example cloning a repository and starting IPython or loading a notebook from
706 for example cloning a repository and starting IPython or loading a notebook from
709 any Jupyter-Compatible interface that has ipython set as a kernel can lead to
707 any Jupyter-Compatible interface that has ipython set as a kernel can lead to
710 code execution.
708 code execution.
711
709
712
710
713 I did not find any standard way for packaged to advertise CVEs they fix, I'm
711 I did not find any standard way for packaged to advertise CVEs they fix, I'm
714 thus trying to add a ``__patched_cves__`` attribute to the IPython module that
712 thus trying to add a ``__patched_cves__`` attribute to the IPython module that
715 list the CVEs that should have been fixed. This attribute is informational only
713 list the CVEs that should have been fixed. This attribute is informational only
716 as if a executable has a flaw, this value can always be changed by an attacker.
714 as if a executable has a flaw, this value can always be changed by an attacker.
717
715
718 .. code::
716 .. code::
719
717
720 In [1]: import IPython
718 In [1]: import IPython
721
719
722 In [2]: IPython.__patched_cves__
720 In [2]: IPython.__patched_cves__
723 Out[2]: {'CVE-2022-21699'}
721 Out[2]: {'CVE-2022-21699'}
724
722
725 In [3]: 'CVE-2022-21699' in IPython.__patched_cves__
723 In [3]: 'CVE-2022-21699' in IPython.__patched_cves__
726 Out[3]: True
724 Out[3]: True
727
725
728 Thus starting with this version:
726 Thus starting with this version:
729
727
730 - The current working directory is not searched anymore for profiles or
728 - The current working directory is not searched anymore for profiles or
731 configurations files.
729 configurations files.
732 - Added a ``__patched_cves__`` attribute (set of strings) to IPython module that contain
730 - Added a ``__patched_cves__`` attribute (set of strings) to IPython module that contain
733 the list of fixed CVE. This is informational only.
731 the list of fixed CVE. This is informational only.
734
732
735 Further details can be read on the `GitHub Advisory <https://github.com/ipython/ipython/security/advisories/GHSA-pq7m-3gw7-gq5x>`__
733 Further details can be read on the `GitHub Advisory <https://github.com/ipython/ipython/security/advisories/GHSA-pq7m-3gw7-gq5x>`__
736
734
737
735
738 .. _version 8.0:
736 .. _version 8.0:
739
737
740 IPython 8.0
738 IPython 8.0
741 -----------
739 -----------
742
740
743 IPython 8.0 is bringing a large number of new features and improvements to both the
741 IPython 8.0 is bringing a large number of new features and improvements to both the
744 user of the terminal and of the kernel via Jupyter. The removal of compatibility
742 user of the terminal and of the kernel via Jupyter. The removal of compatibility
745 with an older version of Python is also the opportunity to do a couple of
743 with an older version of Python is also the opportunity to do a couple of
746 performance improvements in particular with respect to startup time.
744 performance improvements in particular with respect to startup time.
747 The 8.x branch started diverging from its predecessor around IPython 7.12
745 The 8.x branch started diverging from its predecessor around IPython 7.12
748 (January 2020).
746 (January 2020).
749
747
750 This release contains 250+ pull requests, in addition to many of the features
748 This release contains 250+ pull requests, in addition to many of the features
751 and backports that have made it to the 7.x branch. Please see the
749 and backports that have made it to the 7.x branch. Please see the
752 `8.0 milestone <https://github.com/ipython/ipython/milestone/73?closed=1>`__ for the full list of pull requests.
750 `8.0 milestone <https://github.com/ipython/ipython/milestone/73?closed=1>`__ for the full list of pull requests.
753
751
754 Please feel free to send pull requests to update those notes after release,
752 Please feel free to send pull requests to update those notes after release,
755 I have likely forgotten a few things reviewing 250+ PRs.
753 I have likely forgotten a few things reviewing 250+ PRs.
756
754
757 Dependencies changes/downstream packaging
755 Dependencies changes/downstream packaging
758 -----------------------------------------
756 -----------------------------------------
759
757
760 Most of our building steps have been changed to be (mostly) declarative
758 Most of our building steps have been changed to be (mostly) declarative
761 and follow PEP 517. We are trying to completely remove ``setup.py`` (:ghpull:`13238`) and are
759 and follow PEP 517. We are trying to completely remove ``setup.py`` (:ghpull:`13238`) and are
762 looking for help to do so.
760 looking for help to do so.
763
761
764 - minimum supported ``traitlets`` version is now 5+
762 - minimum supported ``traitlets`` version is now 5+
765 - we now require ``stack_data``
763 - we now require ``stack_data``
766 - minimal Python is now 3.8
764 - minimal Python is now 3.8
767 - ``nose`` is not a testing requirement anymore
765 - ``nose`` is not a testing requirement anymore
768 - ``pytest`` replaces nose.
766 - ``pytest`` replaces nose.
769 - ``iptest``/``iptest3`` cli entrypoints do not exist anymore.
767 - ``iptest``/``iptest3`` cli entrypoints do not exist anymore.
770 - the minimum officially ​supported ``numpy`` version has been bumped, but this should
768 - the minimum officially ​supported ``numpy`` version has been bumped, but this should
771 not have much effect on packaging.
769 not have much effect on packaging.
772
770
773
771
774 Deprecation and removal
772 Deprecation and removal
775 -----------------------
773 -----------------------
776
774
777 We removed almost all features, arguments, functions, and modules that were
775 We removed almost all features, arguments, functions, and modules that were
778 marked as deprecated between IPython 1.0 and 5.0. As a reminder, 5.0 was released
776 marked as deprecated between IPython 1.0 and 5.0. As a reminder, 5.0 was released
779 in 2016, and 1.0 in 2013. Last release of the 5 branch was 5.10.0, in May 2020.
777 in 2016, and 1.0 in 2013. Last release of the 5 branch was 5.10.0, in May 2020.
780 The few remaining deprecated features we left have better deprecation warnings
778 The few remaining deprecated features we left have better deprecation warnings
781 or have been turned into explicit errors for better error messages.
779 or have been turned into explicit errors for better error messages.
782
780
783 I will use this occasion to add the following requests to anyone emitting a
781 I will use this occasion to add the following requests to anyone emitting a
784 deprecation warning:
782 deprecation warning:
785
783
786 - Please add at least ``stacklevel=2`` so that the warning is emitted into the
784 - Please add at least ``stacklevel=2`` so that the warning is emitted into the
787 caller context, and not the callee one.
785 caller context, and not the callee one.
788 - Please add **since which version** something is deprecated.
786 - Please add **since which version** something is deprecated.
789
787
790 As a side note, it is much easier to conditionally compare version
788 As a side note, it is much easier to conditionally compare version
791 numbers rather than using ``try/except`` when functionality changes with a version.
789 numbers rather than using ``try/except`` when functionality changes with a version.
792
790
793 I won't list all the removed features here, but modules like ``IPython.kernel``,
791 I won't list all the removed features here, but modules like ``IPython.kernel``,
794 which was just a shim module around ``ipykernel`` for the past 8 years, have been
792 which was just a shim module around ``ipykernel`` for the past 8 years, have been
795 removed, and so many other similar things that pre-date the name **Jupyter**
793 removed, and so many other similar things that pre-date the name **Jupyter**
796 itself.
794 itself.
797
795
798 We no longer need to add ``IPython.extensions`` to the PYTHONPATH because that is being
796 We no longer need to add ``IPython.extensions`` to the PYTHONPATH because that is being
799 handled by ``load_extension``.
797 handled by ``load_extension``.
800
798
801 We are also removing ``Cythonmagic``, ``sympyprinting`` and ``rmagic`` as they are now in
799 We are also removing ``Cythonmagic``, ``sympyprinting`` and ``rmagic`` as they are now in
802 other packages and no longer need to be inside IPython.
800 other packages and no longer need to be inside IPython.
803
801
804
802
805 Documentation
803 Documentation
806 -------------
804 -------------
807
805
808 The majority of our docstrings have now been reformatted and automatically fixed by
806 The majority of our docstrings have now been reformatted and automatically fixed by
809 the experimental `VΓ©lin <https://pypi.org/project/velin/>`_ project to conform
807 the experimental `VΓ©lin <https://pypi.org/project/velin/>`_ project to conform
810 to numpydoc.
808 to numpydoc.
811
809
812 Type annotations
810 Type annotations
813 ----------------
811 ----------------
814
812
815 While IPython itself is highly dynamic and can't be completely typed, many of
813 While IPython itself is highly dynamic and can't be completely typed, many of
816 the functions now have type annotations, and part of the codebase is now checked
814 the functions now have type annotations, and part of the codebase is now checked
817 by mypy.
815 by mypy.
818
816
819
817
820 Featured changes
818 Featured changes
821 ----------------
819 ----------------
822
820
823 Here is a features list of changes in IPython 8.0. This is of course non-exhaustive.
821 Here is a features list of changes in IPython 8.0. This is of course non-exhaustive.
824 Please note as well that many features have been added in the 7.x branch as well
822 Please note as well that many features have been added in the 7.x branch as well
825 (and hence why you want to read the 7.x what's new notes), in particular
823 (and hence why you want to read the 7.x what's new notes), in particular
826 features contributed by QuantStack (with respect to debugger protocol and Xeus
824 features contributed by QuantStack (with respect to debugger protocol and Xeus
827 Python), as well as many debugger features that I was pleased to implement as
825 Python), as well as many debugger features that I was pleased to implement as
828 part of my work at QuanSight and sponsored by DE Shaw.
826 part of my work at QuanSight and sponsored by DE Shaw.
829
827
830 Traceback improvements
828 Traceback improvements
831 ~~~~~~~~~~~~~~~~~~~~~~
829 ~~~~~~~~~~~~~~~~~~~~~~
832
830
833 Previously, error tracebacks for errors happening in code cells were showing a
831 Previously, error tracebacks for errors happening in code cells were showing a
834 hash, the one used for compiling the Python AST::
832 hash, the one used for compiling the Python AST::
835
833
836 In [1]: def foo():
834 In [1]: def foo():
837 ...: return 3 / 0
835 ...: return 3 / 0
838 ...:
836 ...:
839
837
840 In [2]: foo()
838 In [2]: foo()
841 ---------------------------------------------------------------------------
839 ---------------------------------------------------------------------------
842 ZeroDivisionError Traceback (most recent call last)
840 ZeroDivisionError Traceback (most recent call last)
843 <ipython-input-2-c19b6d9633cf> in <module>
841 <ipython-input-2-c19b6d9633cf> in <module>
844 ----> 1 foo()
842 ----> 1 foo()
845
843
846 <ipython-input-1-1595a74c32d5> in foo()
844 <ipython-input-1-1595a74c32d5> in foo()
847 1 def foo():
845 1 def foo():
848 ----> 2 return 3 / 0
846 ----> 2 return 3 / 0
849 3
847 3
850
848
851 ZeroDivisionError: division by zero
849 ZeroDivisionError: division by zero
852
850
853 The error traceback is now correctly formatted, showing the cell number in which the error happened::
851 The error traceback is now correctly formatted, showing the cell number in which the error happened::
854
852
855 In [1]: def foo():
853 In [1]: def foo():
856 ...: return 3 / 0
854 ...: return 3 / 0
857 ...:
855 ...:
858
856
859 Input In [2]: foo()
857 Input In [2]: foo()
860 ---------------------------------------------------------------------------
858 ---------------------------------------------------------------------------
861 ZeroDivisionError Traceback (most recent call last)
859 ZeroDivisionError Traceback (most recent call last)
862 input In [2], in <module>
860 input In [2], in <module>
863 ----> 1 foo()
861 ----> 1 foo()
864
862
865 Input In [1], in foo()
863 Input In [1], in foo()
866 1 def foo():
864 1 def foo():
867 ----> 2 return 3 / 0
865 ----> 2 return 3 / 0
868
866
869 ZeroDivisionError: division by zero
867 ZeroDivisionError: division by zero
870
868
871 The ``stack_data`` package has been integrated, which provides smarter information in the traceback;
869 The ``stack_data`` package has been integrated, which provides smarter information in the traceback;
872 in particular it will highlight the AST node where an error occurs which can help to quickly narrow down errors.
870 in particular it will highlight the AST node where an error occurs which can help to quickly narrow down errors.
873
871
874 For example in the following snippet::
872 For example in the following snippet::
875
873
876 def foo(i):
874 def foo(i):
877 x = [[[0]]]
875 x = [[[0]]]
878 return x[0][i][0]
876 return x[0][i][0]
879
877
880
878
881 def bar():
879 def bar():
882 return foo(0) + foo(
880 return foo(0) + foo(
883 1
881 1
884 ) + foo(2)
882 ) + foo(2)
885
883
886
884
887 calling ``bar()`` would raise an ``IndexError`` on the return line of ``foo``,
885 calling ``bar()`` would raise an ``IndexError`` on the return line of ``foo``,
888 and IPython 8.0 is capable of telling you where the index error occurs::
886 and IPython 8.0 is capable of telling you where the index error occurs::
889
887
890
888
891 IndexError
889 IndexError
892 Input In [2], in <module>
890 Input In [2], in <module>
893 ----> 1 bar()
891 ----> 1 bar()
894 ^^^^^
892 ^^^^^
895
893
896 Input In [1], in bar()
894 Input In [1], in bar()
897 6 def bar():
895 6 def bar():
898 ----> 7 return foo(0) + foo(
896 ----> 7 return foo(0) + foo(
899 ^^^^
897 ^^^^
900 8 1
898 8 1
901 ^^^^^^^^
899 ^^^^^^^^
902 9 ) + foo(2)
900 9 ) + foo(2)
903 ^^^^
901 ^^^^
904
902
905 Input In [1], in foo(i)
903 Input In [1], in foo(i)
906 1 def foo(i):
904 1 def foo(i):
907 2 x = [[[0]]]
905 2 x = [[[0]]]
908 ----> 3 return x[0][i][0]
906 ----> 3 return x[0][i][0]
909 ^^^^^^^
907 ^^^^^^^
910
908
911 The corresponding locations marked here with ``^`` will show up highlighted in
909 The corresponding locations marked here with ``^`` will show up highlighted in
912 the terminal and notebooks.
910 the terminal and notebooks.
913
911
914 Finally, a colon ``::`` and line number is appended after a filename in
912 Finally, a colon ``::`` and line number is appended after a filename in
915 traceback::
913 traceback::
916
914
917
915
918 ZeroDivisionError Traceback (most recent call last)
916 ZeroDivisionError Traceback (most recent call last)
919 File ~/error.py:4, in <module>
917 File ~/error.py:4, in <module>
920 1 def f():
918 1 def f():
921 2 1/0
919 2 1/0
922 ----> 4 f()
920 ----> 4 f()
923
921
924 File ~/error.py:2, in f()
922 File ~/error.py:2, in f()
925 1 def f():
923 1 def f():
926 ----> 2 1/0
924 ----> 2 1/0
927
925
928 Many terminals and editors have integrations enabling you to directly jump to the
926 Many terminals and editors have integrations enabling you to directly jump to the
929 relevant file/line when this syntax is used, so this small addition may have a high
927 relevant file/line when this syntax is used, so this small addition may have a high
930 impact on productivity.
928 impact on productivity.
931
929
932
930
933 Autosuggestions
931 Autosuggestions
934 ~~~~~~~~~~~~~~~
932 ~~~~~~~~~~~~~~~
935
933
936 Autosuggestion is a very useful feature available in `fish <https://fishshell.com/>`__, `zsh <https://en.wikipedia.org/wiki/Z_shell>`__, and `prompt-toolkit <https://python-prompt-toolkit.readthedocs.io/en/master/pages/asking_for_input.html#auto-suggestion>`__.
934 Autosuggestion is a very useful feature available in `fish <https://fishshell.com/>`__, `zsh <https://en.wikipedia.org/wiki/Z_shell>`__, and `prompt-toolkit <https://python-prompt-toolkit.readthedocs.io/en/master/pages/asking_for_input.html#auto-suggestion>`__.
937
935
938 `Ptpython <https://github.com/prompt-toolkit/ptpython#ptpython>`__ allows users to enable this feature in
936 `Ptpython <https://github.com/prompt-toolkit/ptpython#ptpython>`__ allows users to enable this feature in
939 `ptpython/config.py <https://github.com/prompt-toolkit/ptpython/blob/master/examples/ptpython_config/config.py#L90>`__.
937 `ptpython/config.py <https://github.com/prompt-toolkit/ptpython/blob/master/examples/ptpython_config/config.py#L90>`__.
940
938
941 This feature allows users to accept autosuggestions with ctrl e, ctrl f,
939 This feature allows users to accept autosuggestions with ctrl e, ctrl f,
942 or right arrow as described below.
940 or right arrow as described below.
943
941
944 1. Start ipython
942 1. Start ipython
945
943
946 .. image:: ../_images/8.0/auto_suggest_1_prompt_no_text.png
944 .. image:: ../_images/8.0/auto_suggest_1_prompt_no_text.png
947
945
948 2. Run ``print("hello")``
946 2. Run ``print("hello")``
949
947
950 .. image:: ../_images/8.0/auto_suggest_2_print_hello_suggest.png
948 .. image:: ../_images/8.0/auto_suggest_2_print_hello_suggest.png
951
949
952 3. start typing ``print`` again to see the autosuggestion
950 3. start typing ``print`` again to see the autosuggestion
953
951
954 .. image:: ../_images/8.0/auto_suggest_3_print_hello_suggest.png
952 .. image:: ../_images/8.0/auto_suggest_3_print_hello_suggest.png
955
953
956 4. Press ``ctrl-f``, or ``ctrl-e``, or ``right-arrow`` to accept the suggestion
954 4. Press ``ctrl-f``, or ``ctrl-e``, or ``right-arrow`` to accept the suggestion
957
955
958 .. image:: ../_images/8.0/auto_suggest_4_print_hello.png
956 .. image:: ../_images/8.0/auto_suggest_4_print_hello.png
959
957
960 You can also complete word by word:
958 You can also complete word by word:
961
959
962 1. Run ``def say_hello(): print("hello")``
960 1. Run ``def say_hello(): print("hello")``
963
961
964 .. image:: ../_images/8.0/auto_suggest_second_prompt.png
962 .. image:: ../_images/8.0/auto_suggest_second_prompt.png
965
963
966 2. Start typing the first letter if ``def`` to see the autosuggestion
964 2. Start typing the first letter if ``def`` to see the autosuggestion
967
965
968 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
966 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
969
967
970 3. Press ``alt-f`` (or ``escape`` followed by ``f``), to accept the first word of the suggestion
968 3. Press ``alt-f`` (or ``escape`` followed by ``f``), to accept the first word of the suggestion
971
969
972 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
970 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
973
971
974 Importantly, this feature does not interfere with tab completion:
972 Importantly, this feature does not interfere with tab completion:
975
973
976 1. After running ``def say_hello(): print("hello")``, press d
974 1. After running ``def say_hello(): print("hello")``, press d
977
975
978 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
976 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
979
977
980 2. Press Tab to start tab completion
978 2. Press Tab to start tab completion
981
979
982 .. image:: ../_images/8.0/auto_suggest_d_completions.png
980 .. image:: ../_images/8.0/auto_suggest_d_completions.png
983
981
984 3A. Press Tab again to select the first option
982 3A. Press Tab again to select the first option
985
983
986 .. image:: ../_images/8.0/auto_suggest_def_completions.png
984 .. image:: ../_images/8.0/auto_suggest_def_completions.png
987
985
988 3B. Press ``alt f`` (``escape``, ``f``) to accept to accept the first word of the suggestion
986 3B. Press ``alt f`` (``escape``, ``f``) to accept to accept the first word of the suggestion
989
987
990 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
988 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
991
989
992 3C. Press ``ctrl-f`` or ``ctrl-e`` to accept the entire suggestion
990 3C. Press ``ctrl-f`` or ``ctrl-e`` to accept the entire suggestion
993
991
994 .. image:: ../_images/8.0/auto_suggest_match_parens.png
992 .. image:: ../_images/8.0/auto_suggest_match_parens.png
995
993
996
994
997 Currently, autosuggestions are only shown in the emacs or vi insert editing modes:
995 Currently, autosuggestions are only shown in the emacs or vi insert editing modes:
998
996
999 - The ctrl e, ctrl f, and alt f shortcuts work by default in emacs mode.
997 - The ctrl e, ctrl f, and alt f shortcuts work by default in emacs mode.
1000 - 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/>`__.
998 - 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/>`__.
1001
999
1002
1000
1003 Show pinfo information in ipdb using "?" and "??"
1001 Show pinfo information in ipdb using "?" and "??"
1004 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1002 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1005
1003
1006 In IPDB, it is now possible to show the information about an object using "?"
1004 In IPDB, it is now possible to show the information about an object using "?"
1007 and "??", in much the same way that it can be done when using the IPython prompt::
1005 and "??", in much the same way that it can be done when using the IPython prompt::
1008
1006
1009 ipdb> partial?
1007 ipdb> partial?
1010 Init signature: partial(self, /, *args, **kwargs)
1008 Init signature: partial(self, /, *args, **kwargs)
1011 Docstring:
1009 Docstring:
1012 partial(func, *args, **keywords) - new function with partial application
1010 partial(func, *args, **keywords) - new function with partial application
1013 of the given arguments and keywords.
1011 of the given arguments and keywords.
1014 File: ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py
1012 File: ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py
1015 Type: type
1013 Type: type
1016 Subclasses:
1014 Subclasses:
1017
1015
1018 Previously, ``pinfo`` or ``pinfo2`` command had to be used for this purpose.
1016 Previously, ``pinfo`` or ``pinfo2`` command had to be used for this purpose.
1019
1017
1020
1018
1021 Autoreload 3 feature
1019 Autoreload 3 feature
1022 ~~~~~~~~~~~~~~~~~~~~
1020 ~~~~~~~~~~~~~~~~~~~~
1023
1021
1024 Example: When an IPython session is run with the 'autoreload' extension loaded,
1022 Example: When an IPython session is run with the 'autoreload' extension loaded,
1025 you will now have the option '3' to select, which means the following:
1023 you will now have the option '3' to select, which means the following:
1026
1024
1027 1. replicate all functionality from option 2
1025 1. replicate all functionality from option 2
1028 2. autoload all new funcs/classes/enums/globals from the module when they are added
1026 2. autoload all new funcs/classes/enums/globals from the module when they are added
1029 3. autoload all newly imported funcs/classes/enums/globals from external modules
1027 3. autoload all newly imported funcs/classes/enums/globals from external modules
1030
1028
1031 Try ``%autoreload 3`` in an IPython session after running ``%load_ext autoreload``.
1029 Try ``%autoreload 3`` in an IPython session after running ``%load_ext autoreload``.
1032
1030
1033 For more information please see the following unit test : ``extensions/tests/test_autoreload.py:test_autoload_newly_added_objects``
1031 For more information please see the following unit test : ``extensions/tests/test_autoreload.py:test_autoload_newly_added_objects``
1034
1032
1035 Auto formatting with black in the CLI
1033 Auto formatting with black in the CLI
1036 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1034 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1037
1035
1038 This feature was present in 7.x, but disabled by default.
1036 This feature was present in 7.x, but disabled by default.
1039
1037
1040 In 8.0, input was automatically reformatted with Black when black was installed.
1038 In 8.0, input was automatically reformatted with Black when black was installed.
1041 This feature has been reverted for the time being.
1039 This feature has been reverted for the time being.
1042 You can re-enable it by setting ``TerminalInteractiveShell.autoformatter`` to ``"black"``
1040 You can re-enable it by setting ``TerminalInteractiveShell.autoformatter`` to ``"black"``
1043
1041
1044 History Range Glob feature
1042 History Range Glob feature
1045 ~~~~~~~~~~~~~~~~~~~~~~~~~~
1043 ~~~~~~~~~~~~~~~~~~~~~~~~~~
1046
1044
1047 Previously, when using ``%history``, users could specify either
1045 Previously, when using ``%history``, users could specify either
1048 a range of sessions and lines, for example:
1046 a range of sessions and lines, for example:
1049
1047
1050 .. code-block:: python
1048 .. code-block:: python
1051
1049
1052 ~8/1-~6/5 # see history from the first line of 8 sessions ago,
1050 ~8/1-~6/5 # see history from the first line of 8 sessions ago,
1053 # to the fifth line of 6 sessions ago.``
1051 # to the fifth line of 6 sessions ago.``
1054
1052
1055 Or users could specify a glob pattern:
1053 Or users could specify a glob pattern:
1056
1054
1057 .. code-block:: python
1055 .. code-block:: python
1058
1056
1059 -g <pattern> # glob ALL history for the specified pattern.
1057 -g <pattern> # glob ALL history for the specified pattern.
1060
1058
1061 However users could *not* specify both.
1059 However users could *not* specify both.
1062
1060
1063 If a user *did* specify both a range and a glob pattern,
1061 If a user *did* specify both a range and a glob pattern,
1064 then the glob pattern would be used (globbing *all* history) *and the range would be ignored*.
1062 then the glob pattern would be used (globbing *all* history) *and the range would be ignored*.
1065
1063
1066 With this enhancement, if a user specifies both a range and a glob pattern, then the glob pattern will be applied to the specified range of history.
1064 With this enhancement, if a user specifies both a range and a glob pattern, then the glob pattern will be applied to the specified range of history.
1067
1065
1068 Don't start a multi-line cell with sunken parenthesis
1066 Don't start a multi-line cell with sunken parenthesis
1069 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1067 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1070
1068
1071 From now on, IPython will not ask for the next line of input when given a single
1069 From now on, IPython will not ask for the next line of input when given a single
1072 line with more closing than opening brackets. For example, this means that if
1070 line with more closing than opening brackets. For example, this means that if
1073 you (mis)type ``]]`` instead of ``[]``, a ``SyntaxError`` will show up, instead of
1071 you (mis)type ``]]`` instead of ``[]``, a ``SyntaxError`` will show up, instead of
1074 the ``...:`` prompt continuation.
1072 the ``...:`` prompt continuation.
1075
1073
1076 IPython shell for ipdb interact
1074 IPython shell for ipdb interact
1077 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1075 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1078
1076
1079 The ipdb ``interact`` starts an IPython shell instead of Python's built-in ``code.interact()``.
1077 The ipdb ``interact`` starts an IPython shell instead of Python's built-in ``code.interact()``.
1080
1078
1081 Automatic Vi prompt stripping
1079 Automatic Vi prompt stripping
1082 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1080 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1083
1081
1084 When pasting code into IPython, it will strip the leading prompt characters if
1082 When pasting code into IPython, it will strip the leading prompt characters if
1085 there are any. For example, you can paste the following code into the console -
1083 there are any. For example, you can paste the following code into the console -
1086 it will still work, even though each line is prefixed with prompts (``In``,
1084 it will still work, even though each line is prefixed with prompts (``In``,
1087 ``Out``)::
1085 ``Out``)::
1088
1086
1089 In [1]: 2 * 2 == 4
1087 In [1]: 2 * 2 == 4
1090 Out[1]: True
1088 Out[1]: True
1091
1089
1092 In [2]: print("This still works as pasted")
1090 In [2]: print("This still works as pasted")
1093
1091
1094
1092
1095 Previously, this was not the case for the Vi-mode prompts::
1093 Previously, this was not the case for the Vi-mode prompts::
1096
1094
1097 In [1]: [ins] In [13]: 2 * 2 == 4
1095 In [1]: [ins] In [13]: 2 * 2 == 4
1098 ...: Out[13]: True
1096 ...: Out[13]: True
1099 ...:
1097 ...:
1100 File "<ipython-input-1-727bb88eaf33>", line 1
1098 File "<ipython-input-1-727bb88eaf33>", line 1
1101 [ins] In [13]: 2 * 2 == 4
1099 [ins] In [13]: 2 * 2 == 4
1102 ^
1100 ^
1103 SyntaxError: invalid syntax
1101 SyntaxError: invalid syntax
1104
1102
1105 This is now fixed, and Vi prompt prefixes - ``[ins]`` and ``[nav]`` - are
1103 This is now fixed, and Vi prompt prefixes - ``[ins]`` and ``[nav]`` - are
1106 skipped just as the normal ``In`` would be.
1104 skipped just as the normal ``In`` would be.
1107
1105
1108 IPython shell can be started in the Vi mode using ``ipython --TerminalInteractiveShell.editing_mode=vi``,
1106 IPython shell can be started in the Vi mode using ``ipython --TerminalInteractiveShell.editing_mode=vi``,
1109 You should be able to change mode dynamically with ``%config TerminalInteractiveShell.editing_mode='vi'``
1107 You should be able to change mode dynamically with ``%config TerminalInteractiveShell.editing_mode='vi'``
1110
1108
1111 Empty History Ranges
1109 Empty History Ranges
1112 ~~~~~~~~~~~~~~~~~~~~
1110 ~~~~~~~~~~~~~~~~~~~~
1113
1111
1114 A number of magics that take history ranges can now be used with an empty
1112 A number of magics that take history ranges can now be used with an empty
1115 range. These magics are:
1113 range. These magics are:
1116
1114
1117 * ``%save``
1115 * ``%save``
1118 * ``%load``
1116 * ``%load``
1119 * ``%pastebin``
1117 * ``%pastebin``
1120 * ``%pycat``
1118 * ``%pycat``
1121
1119
1122 Using them this way will make them take the history of the current session up
1120 Using them this way will make them take the history of the current session up
1123 to the point of the magic call (such that the magic itself will not be
1121 to the point of the magic call (such that the magic itself will not be
1124 included).
1122 included).
1125
1123
1126 Therefore it is now possible to save the whole history to a file using
1124 Therefore it is now possible to save the whole history to a file using
1127 ``%save <filename>``, load and edit it using ``%load`` (makes for a nice usage
1125 ``%save <filename>``, load and edit it using ``%load`` (makes for a nice usage
1128 when followed with :kbd:`F2`), send it to `dpaste.org <http://dpast.org>`_ using
1126 when followed with :kbd:`F2`), send it to `dpaste.org <http://dpast.org>`_ using
1129 ``%pastebin``, or view the whole thing syntax-highlighted with a single
1127 ``%pastebin``, or view the whole thing syntax-highlighted with a single
1130 ``%pycat``.
1128 ``%pycat``.
1131
1129
1132
1130
1133 Windows timing implementation: Switch to process_time
1131 Windows timing implementation: Switch to process_time
1134 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1132 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1135 Timing on Windows, for example with ``%%time``, was changed from being based on ``time.perf_counter``
1133 Timing on Windows, for example with ``%%time``, was changed from being based on ``time.perf_counter``
1136 (which counted time even when the process was sleeping) to being based on ``time.process_time`` instead
1134 (which counted time even when the process was sleeping) to being based on ``time.process_time`` instead
1137 (which only counts CPU time). This brings it closer to the behavior on Linux. See :ghpull:`12984`.
1135 (which only counts CPU time). This brings it closer to the behavior on Linux. See :ghpull:`12984`.
1138
1136
1139 Miscellaneous
1137 Miscellaneous
1140 ~~~~~~~~~~~~~
1138 ~~~~~~~~~~~~~
1141 - Non-text formatters are not disabled in the terminal, which should simplify
1139 - Non-text formatters are not disabled in the terminal, which should simplify
1142 writing extensions displaying images or other mimetypes in supporting terminals.
1140 writing extensions displaying images or other mimetypes in supporting terminals.
1143 :ghpull:`12315`
1141 :ghpull:`12315`
1144 - It is now possible to automatically insert matching brackets in Terminal IPython using the
1142 - It is now possible to automatically insert matching brackets in Terminal IPython using the
1145 ``TerminalInteractiveShell.auto_match=True`` option. :ghpull:`12586`
1143 ``TerminalInteractiveShell.auto_match=True`` option. :ghpull:`12586`
1146 - We are thinking of deprecating the current ``%%javascript`` magic in favor of a better replacement. See :ghpull:`13376`.
1144 - We are thinking of deprecating the current ``%%javascript`` magic in favor of a better replacement. See :ghpull:`13376`.
1147 - ``~`` is now expanded when part of a path in most magics :ghpull:`13385`
1145 - ``~`` is now expanded when part of a path in most magics :ghpull:`13385`
1148 - ``%/%%timeit`` magic now adds a comma every thousands to make reading a long number easier :ghpull:`13379`
1146 - ``%/%%timeit`` magic now adds a comma every thousands to make reading a long number easier :ghpull:`13379`
1149 - ``"info"`` messages can now be customised to hide some fields :ghpull:`13343`
1147 - ``"info"`` messages can now be customised to hide some fields :ghpull:`13343`
1150 - ``collections.UserList`` now pretty-prints :ghpull:`13320`
1148 - ``collections.UserList`` now pretty-prints :ghpull:`13320`
1151 - The debugger now has a persistent history, which should make it less
1149 - The debugger now has a persistent history, which should make it less
1152 annoying to retype commands :ghpull:`13246`
1150 annoying to retype commands :ghpull:`13246`
1153 - ``!pip`` ``!conda`` ``!cd`` or ``!ls`` are likely doing the wrong thing. We
1151 - ``!pip`` ``!conda`` ``!cd`` or ``!ls`` are likely doing the wrong thing. We
1154 now warn users if they use one of those commands. :ghpull:`12954`
1152 now warn users if they use one of those commands. :ghpull:`12954`
1155 - Make ``%precision`` work for ``numpy.float64`` type :ghpull:`12902`
1153 - Make ``%precision`` work for ``numpy.float64`` type :ghpull:`12902`
1156
1154
1157 Re-added support for XDG config directories
1155 Re-added support for XDG config directories
1158 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1156 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1159
1157
1160 XDG support through the years comes and goes. There is a tension between having
1158 XDG support through the years comes and goes. There is a tension between having
1161 an identical location for configuration in all platforms versus having simple instructions.
1159 an identical location for configuration in all platforms versus having simple instructions.
1162 After initial failures a couple of years ago, IPython was modified to automatically migrate XDG
1160 After initial failures a couple of years ago, IPython was modified to automatically migrate XDG
1163 config files back into ``~/.ipython``. That migration code has now been removed.
1161 config files back into ``~/.ipython``. That migration code has now been removed.
1164 IPython now checks the XDG locations, so if you _manually_ move your config
1162 IPython now checks the XDG locations, so if you _manually_ move your config
1165 files to your preferred location, IPython will not move them back.
1163 files to your preferred location, IPython will not move them back.
1166
1164
1167
1165
1168 Preparing for Python 3.10
1166 Preparing for Python 3.10
1169 -------------------------
1167 -------------------------
1170
1168
1171 To prepare for Python 3.10, we have started working on removing reliance and
1169 To prepare for Python 3.10, we have started working on removing reliance and
1172 any dependency that is not compatible with Python 3.10. This includes migrating our
1170 any dependency that is not compatible with Python 3.10. This includes migrating our
1173 test suite to pytest and starting to remove nose. This also means that the
1171 test suite to pytest and starting to remove nose. This also means that the
1174 ``iptest`` command is now gone and all testing is via pytest.
1172 ``iptest`` command is now gone and all testing is via pytest.
1175
1173
1176 This was in large part thanks to the NumFOCUS Small Developer grant, which enabled us to
1174 This was in large part thanks to the NumFOCUS Small Developer grant, which enabled us to
1177 allocate \$4000 to hire `Nikita Kniazev (@Kojoley) <https://github.com/Kojoley>`_,
1175 allocate \$4000 to hire `Nikita Kniazev (@Kojoley) <https://github.com/Kojoley>`_,
1178 who did a fantastic job at updating our code base, migrating to pytest, pushing
1176 who did a fantastic job at updating our code base, migrating to pytest, pushing
1179 our coverage, and fixing a large number of bugs. I highly recommend contacting
1177 our coverage, and fixing a large number of bugs. I highly recommend contacting
1180 them if you need help with C++ and Python projects.
1178 them if you need help with C++ and Python projects.
1181
1179
1182 You can find all relevant issues and PRs with `the SDG 2021 tag <https://github.com/ipython/ipython/issues?q=label%3A%22Numfocus+SDG+2021%22+>`__
1180 You can find all relevant issues and PRs with `the SDG 2021 tag <https://github.com/ipython/ipython/issues?q=label%3A%22Numfocus+SDG+2021%22+>`__
1183
1181
1184 Removing support for older Python versions
1182 Removing support for older Python versions
1185 ------------------------------------------
1183 ------------------------------------------
1186
1184
1187
1185
1188 We are removing support for Python up through 3.7, allowing internal code to use the more
1186 We are removing support for Python up through 3.7, allowing internal code to use the more
1189 efficient ``pathlib`` and to make better use of type annotations.
1187 efficient ``pathlib`` and to make better use of type annotations.
1190
1188
1191 .. image:: ../_images/8.0/pathlib_pathlib_everywhere.jpg
1189 .. image:: ../_images/8.0/pathlib_pathlib_everywhere.jpg
1192 :alt: "Meme image of Toy Story with Woody and Buzz, with the text 'pathlib, pathlib everywhere'"
1190 :alt: "Meme image of Toy Story with Woody and Buzz, with the text 'pathlib, pathlib everywhere'"
1193
1191
1194
1192
1195 We had about 34 PRs only to update some logic to update some functions from managing strings to
1193 We had about 34 PRs only to update some logic to update some functions from managing strings to
1196 using Pathlib.
1194 using Pathlib.
1197
1195
1198 The completer has also seen significant updates and now makes use of newer Jedi APIs,
1196 The completer has also seen significant updates and now makes use of newer Jedi APIs,
1199 offering faster and more reliable tab completion.
1197 offering faster and more reliable tab completion.
1200
1198
1201 Misc Statistics
1199 Misc Statistics
1202 ---------------
1200 ---------------
1203
1201
1204 Here are some numbers::
1202 Here are some numbers::
1205
1203
1206 7.x: 296 files, 12561 blank lines, 20282 comments, 35142 line of code.
1204 7.x: 296 files, 12561 blank lines, 20282 comments, 35142 line of code.
1207 8.0: 252 files, 12053 blank lines, 19232 comments, 34505 line of code.
1205 8.0: 252 files, 12053 blank lines, 19232 comments, 34505 line of code.
1208
1206
1209 $ git diff --stat 7.x...master | tail -1
1207 $ git diff --stat 7.x...master | tail -1
1210 340 files changed, 13399 insertions(+), 12421 deletions(-)
1208 340 files changed, 13399 insertions(+), 12421 deletions(-)
1211
1209
1212 We have commits from 162 authors, who contributed 1916 commits in 23 month, excluding merges (to not bias toward
1210 We have commits from 162 authors, who contributed 1916 commits in 23 month, excluding merges (to not bias toward
1213 maintainers pushing buttons).::
1211 maintainers pushing buttons).::
1214
1212
1215 $ git shortlog -s --no-merges 7.x...master | sort -nr
1213 $ git shortlog -s --no-merges 7.x...master | sort -nr
1216 535 Matthias Bussonnier
1214 535 Matthias Bussonnier
1217 86 Nikita Kniazev
1215 86 Nikita Kniazev
1218 69 Blazej Michalik
1216 69 Blazej Michalik
1219 49 Samuel Gaist
1217 49 Samuel Gaist
1220 27 Itamar Turner-Trauring
1218 27 Itamar Turner-Trauring
1221 18 Spas Kalaydzhisyki
1219 18 Spas Kalaydzhisyki
1222 17 Thomas Kluyver
1220 17 Thomas Kluyver
1223 17 Quentin Peter
1221 17 Quentin Peter
1224 17 James Morris
1222 17 James Morris
1225 17 Artur Svistunov
1223 17 Artur Svistunov
1226 15 Bart Skowron
1224 15 Bart Skowron
1227 14 Alex Hall
1225 14 Alex Hall
1228 13 rushabh-v
1226 13 rushabh-v
1229 13 Terry Davis
1227 13 Terry Davis
1230 13 Benjamin Ragan-Kelley
1228 13 Benjamin Ragan-Kelley
1231 8 martinRenou
1229 8 martinRenou
1232 8 farisachugthai
1230 8 farisachugthai
1233 7 dswij
1231 7 dswij
1234 7 Gal B
1232 7 Gal B
1235 7 Corentin Cadiou
1233 7 Corentin Cadiou
1236 6 yuji96
1234 6 yuji96
1237 6 Martin Skarzynski
1235 6 Martin Skarzynski
1238 6 Justin Palmer
1236 6 Justin Palmer
1239 6 Daniel Goldfarb
1237 6 Daniel Goldfarb
1240 6 Ben Greiner
1238 6 Ben Greiner
1241 5 Sammy Al Hashemi
1239 5 Sammy Al Hashemi
1242 5 Paul Ivanov
1240 5 Paul Ivanov
1243 5 Inception95
1241 5 Inception95
1244 5 Eyenpi
1242 5 Eyenpi
1245 5 Douglas Blank
1243 5 Douglas Blank
1246 5 Coco Mishra
1244 5 Coco Mishra
1247 5 Bibo Hao
1245 5 Bibo Hao
1248 5 AndrΓ© A. Gomes
1246 5 AndrΓ© A. Gomes
1249 5 Ahmed Fasih
1247 5 Ahmed Fasih
1250 4 takuya fujiwara
1248 4 takuya fujiwara
1251 4 palewire
1249 4 palewire
1252 4 Thomas A Caswell
1250 4 Thomas A Caswell
1253 4 Talley Lambert
1251 4 Talley Lambert
1254 4 Scott Sanderson
1252 4 Scott Sanderson
1255 4 Ram Rachum
1253 4 Ram Rachum
1256 4 Nick Muoh
1254 4 Nick Muoh
1257 4 Nathan Goldbaum
1255 4 Nathan Goldbaum
1258 4 Mithil Poojary
1256 4 Mithil Poojary
1259 4 Michael T
1257 4 Michael T
1260 4 Jakub Klus
1258 4 Jakub Klus
1261 4 Ian Castleden
1259 4 Ian Castleden
1262 4 Eli Rykoff
1260 4 Eli Rykoff
1263 4 Ashwin Vishnu
1261 4 Ashwin Vishnu
1264 3 谭九鼎
1262 3 谭九鼎
1265 3 sleeping
1263 3 sleeping
1266 3 Sylvain Corlay
1264 3 Sylvain Corlay
1267 3 Peter Corke
1265 3 Peter Corke
1268 3 Paul Bissex
1266 3 Paul Bissex
1269 3 Matthew Feickert
1267 3 Matthew Feickert
1270 3 Fernando Perez
1268 3 Fernando Perez
1271 3 Eric Wieser
1269 3 Eric Wieser
1272 3 Daniel Mietchen
1270 3 Daniel Mietchen
1273 3 Aditya Sathe
1271 3 Aditya Sathe
1274 3 007vedant
1272 3 007vedant
1275 2 rchiodo
1273 2 rchiodo
1276 2 nicolaslazo
1274 2 nicolaslazo
1277 2 luttik
1275 2 luttik
1278 2 gorogoroumaru
1276 2 gorogoroumaru
1279 2 foobarbyte
1277 2 foobarbyte
1280 2 bar-hen
1278 2 bar-hen
1281 2 Theo Ouzhinski
1279 2 Theo Ouzhinski
1282 2 Strawkage
1280 2 Strawkage
1283 2 Samreen Zarroug
1281 2 Samreen Zarroug
1284 2 Pete Blois
1282 2 Pete Blois
1285 2 Meysam Azad
1283 2 Meysam Azad
1286 2 Matthieu Ancellin
1284 2 Matthieu Ancellin
1287 2 Mark Schmitz
1285 2 Mark Schmitz
1288 2 Maor Kleinberger
1286 2 Maor Kleinberger
1289 2 MRCWirtz
1287 2 MRCWirtz
1290 2 Lumir Balhar
1288 2 Lumir Balhar
1291 2 Julien Rabinow
1289 2 Julien Rabinow
1292 2 Juan Luis Cano RodrΓ­guez
1290 2 Juan Luis Cano RodrΓ­guez
1293 2 Joyce Er
1291 2 Joyce Er
1294 2 Jakub
1292 2 Jakub
1295 2 Faris A Chugthai
1293 2 Faris A Chugthai
1296 2 Ethan Madden
1294 2 Ethan Madden
1297 2 Dimitri Papadopoulos
1295 2 Dimitri Papadopoulos
1298 2 Diego Fernandez
1296 2 Diego Fernandez
1299 2 Daniel Shimon
1297 2 Daniel Shimon
1300 2 Coco Bennett
1298 2 Coco Bennett
1301 2 Carlos Cordoba
1299 2 Carlos Cordoba
1302 2 Boyuan Liu
1300 2 Boyuan Liu
1303 2 BaoGiang HoangVu
1301 2 BaoGiang HoangVu
1304 2 Augusto
1302 2 Augusto
1305 2 Arthur Svistunov
1303 2 Arthur Svistunov
1306 2 Arthur Moreira
1304 2 Arthur Moreira
1307 2 Ali Nabipour
1305 2 Ali Nabipour
1308 2 Adam Hackbarth
1306 2 Adam Hackbarth
1309 1 richard
1307 1 richard
1310 1 linar-jether
1308 1 linar-jether
1311 1 lbennett
1309 1 lbennett
1312 1 juacrumar
1310 1 juacrumar
1313 1 gpotter2
1311 1 gpotter2
1314 1 digitalvirtuoso
1312 1 digitalvirtuoso
1315 1 dalthviz
1313 1 dalthviz
1316 1 Yonatan Goldschmidt
1314 1 Yonatan Goldschmidt
1317 1 Tomasz KΕ‚oczko
1315 1 Tomasz KΕ‚oczko
1318 1 Tobias Bengfort
1316 1 Tobias Bengfort
1319 1 Timur Kushukov
1317 1 Timur Kushukov
1320 1 Thomas
1318 1 Thomas
1321 1 Snir Broshi
1319 1 Snir Broshi
1322 1 Shao Yang Hong
1320 1 Shao Yang Hong
1323 1 Sanjana-03
1321 1 Sanjana-03
1324 1 Romulo Filho
1322 1 Romulo Filho
1325 1 Rodolfo Carvalho
1323 1 Rodolfo Carvalho
1326 1 Richard Shadrach
1324 1 Richard Shadrach
1327 1 Reilly Tucker Siemens
1325 1 Reilly Tucker Siemens
1328 1 Rakessh Roshan
1326 1 Rakessh Roshan
1329 1 Piers Titus van der Torren
1327 1 Piers Titus van der Torren
1330 1 PhanatosZou
1328 1 PhanatosZou
1331 1 Pavel Safronov
1329 1 Pavel Safronov
1332 1 Paulo S. Costa
1330 1 Paulo S. Costa
1333 1 Paul McCarthy
1331 1 Paul McCarthy
1334 1 NotWearingPants
1332 1 NotWearingPants
1335 1 Naelson Douglas
1333 1 Naelson Douglas
1336 1 Michael Tiemann
1334 1 Michael Tiemann
1337 1 Matt Wozniski
1335 1 Matt Wozniski
1338 1 Markus Wageringel
1336 1 Markus Wageringel
1339 1 Marcus Wirtz
1337 1 Marcus Wirtz
1340 1 Marcio Mazza
1338 1 Marcio Mazza
1341 1 LumΓ­r 'Frenzy' Balhar
1339 1 LumΓ­r 'Frenzy' Balhar
1342 1 Lightyagami1
1340 1 Lightyagami1
1343 1 Leon Anavi
1341 1 Leon Anavi
1344 1 LeafyLi
1342 1 LeafyLi
1345 1 L0uisJ0shua
1343 1 L0uisJ0shua
1346 1 Kyle Cutler
1344 1 Kyle Cutler
1347 1 Krzysztof Cybulski
1345 1 Krzysztof Cybulski
1348 1 Kevin Kirsche
1346 1 Kevin Kirsche
1349 1 KIU Shueng Chuan
1347 1 KIU Shueng Chuan
1350 1 Jonathan Slenders
1348 1 Jonathan Slenders
1351 1 Jay Qi
1349 1 Jay Qi
1352 1 Jake VanderPlas
1350 1 Jake VanderPlas
1353 1 Iwan Briquemont
1351 1 Iwan Briquemont
1354 1 Hussaina Begum Nandyala
1352 1 Hussaina Begum Nandyala
1355 1 Gordon Ball
1353 1 Gordon Ball
1356 1 Gabriel Simonetto
1354 1 Gabriel Simonetto
1357 1 Frank Tobia
1355 1 Frank Tobia
1358 1 Erik
1356 1 Erik
1359 1 Elliott Sales de Andrade
1357 1 Elliott Sales de Andrade
1360 1 Daniel Hahler
1358 1 Daniel Hahler
1361 1 Dan Green-Leipciger
1359 1 Dan Green-Leipciger
1362 1 Dan Green
1360 1 Dan Green
1363 1 Damian Yurzola
1361 1 Damian Yurzola
1364 1 Coon, Ethan T
1362 1 Coon, Ethan T
1365 1 Carol Willing
1363 1 Carol Willing
1366 1 Brian Lee
1364 1 Brian Lee
1367 1 Brendan Gerrity
1365 1 Brendan Gerrity
1368 1 Blake Griffin
1366 1 Blake Griffin
1369 1 Bastian Ebeling
1367 1 Bastian Ebeling
1370 1 Bartosz Telenczuk
1368 1 Bartosz Telenczuk
1371 1 Ankitsingh6299
1369 1 Ankitsingh6299
1372 1 Andrew Port
1370 1 Andrew Port
1373 1 Andrew J. Hesford
1371 1 Andrew J. Hesford
1374 1 Albert Zhang
1372 1 Albert Zhang
1375 1 Adam Johnson
1373 1 Adam Johnson
1376
1374
1377 This does not, of course, represent non-code contributions, for which we are also grateful.
1375 This does not, of course, represent non-code contributions, for which we are also grateful.
1378
1376
1379
1377
1380 API Changes using Frappuccino
1378 API Changes using Frappuccino
1381 -----------------------------
1379 -----------------------------
1382
1380
1383 This is an experimental exhaustive API difference using `Frappuccino <https://pypi.org/project/frappuccino/>`_
1381 This is an experimental exhaustive API difference using `Frappuccino <https://pypi.org/project/frappuccino/>`_
1384
1382
1385
1383
1386 The following items are new in IPython 8.0 ::
1384 The following items are new in IPython 8.0 ::
1387
1385
1388 + IPython.core.async_helpers.get_asyncio_loop()
1386 + IPython.core.async_helpers.get_asyncio_loop()
1389 + IPython.core.completer.Dict
1387 + IPython.core.completer.Dict
1390 + IPython.core.completer.Pattern
1388 + IPython.core.completer.Pattern
1391 + IPython.core.completer.Sequence
1389 + IPython.core.completer.Sequence
1392 + IPython.core.completer.__skip_doctest__
1390 + IPython.core.completer.__skip_doctest__
1393 + IPython.core.debugger.Pdb.precmd(self, line)
1391 + IPython.core.debugger.Pdb.precmd(self, line)
1394 + IPython.core.debugger.__skip_doctest__
1392 + IPython.core.debugger.__skip_doctest__
1395 + IPython.core.display.__getattr__(name)
1393 + IPython.core.display.__getattr__(name)
1396 + IPython.core.display.warn
1394 + IPython.core.display.warn
1397 + IPython.core.display_functions
1395 + IPython.core.display_functions
1398 + IPython.core.display_functions.DisplayHandle
1396 + IPython.core.display_functions.DisplayHandle
1399 + IPython.core.display_functions.DisplayHandle.display(self, obj, **kwargs)
1397 + IPython.core.display_functions.DisplayHandle.display(self, obj, **kwargs)
1400 + IPython.core.display_functions.DisplayHandle.update(self, obj, **kwargs)
1398 + IPython.core.display_functions.DisplayHandle.update(self, obj, **kwargs)
1401 + IPython.core.display_functions.__all__
1399 + IPython.core.display_functions.__all__
1402 + IPython.core.display_functions.__builtins__
1400 + IPython.core.display_functions.__builtins__
1403 + IPython.core.display_functions.__cached__
1401 + IPython.core.display_functions.__cached__
1404 + IPython.core.display_functions.__doc__
1402 + IPython.core.display_functions.__doc__
1405 + IPython.core.display_functions.__file__
1403 + IPython.core.display_functions.__file__
1406 + IPython.core.display_functions.__loader__
1404 + IPython.core.display_functions.__loader__
1407 + IPython.core.display_functions.__name__
1405 + IPython.core.display_functions.__name__
1408 + IPython.core.display_functions.__package__
1406 + IPython.core.display_functions.__package__
1409 + IPython.core.display_functions.__spec__
1407 + IPython.core.display_functions.__spec__
1410 + IPython.core.display_functions.b2a_hex
1408 + IPython.core.display_functions.b2a_hex
1411 + IPython.core.display_functions.clear_output(wait=False)
1409 + IPython.core.display_functions.clear_output(wait=False)
1412 + IPython.core.display_functions.display(*objs, include='None', exclude='None', metadata='None', transient='None', display_id='None', raw=False, clear=False, **kwargs)
1410 + IPython.core.display_functions.display(*objs, include='None', exclude='None', metadata='None', transient='None', display_id='None', raw=False, clear=False, **kwargs)
1413 + IPython.core.display_functions.publish_display_data(data, metadata='None', source='<deprecated>', *, transient='None', **kwargs)
1411 + IPython.core.display_functions.publish_display_data(data, metadata='None', source='<deprecated>', *, transient='None', **kwargs)
1414 + IPython.core.display_functions.update_display(obj, *, display_id, **kwargs)
1412 + IPython.core.display_functions.update_display(obj, *, display_id, **kwargs)
1415 + IPython.core.extensions.BUILTINS_EXTS
1413 + IPython.core.extensions.BUILTINS_EXTS
1416 + IPython.core.inputtransformer2.has_sunken_brackets(tokens)
1414 + IPython.core.inputtransformer2.has_sunken_brackets(tokens)
1417 + IPython.core.interactiveshell.Callable
1415 + IPython.core.interactiveshell.Callable
1418 + IPython.core.interactiveshell.__annotations__
1416 + IPython.core.interactiveshell.__annotations__
1419 + IPython.core.ultratb.List
1417 + IPython.core.ultratb.List
1420 + IPython.core.ultratb.Tuple
1418 + IPython.core.ultratb.Tuple
1421 + IPython.lib.pretty.CallExpression
1419 + IPython.lib.pretty.CallExpression
1422 + IPython.lib.pretty.CallExpression.factory(name)
1420 + IPython.lib.pretty.CallExpression.factory(name)
1423 + IPython.lib.pretty.RawStringLiteral
1421 + IPython.lib.pretty.RawStringLiteral
1424 + IPython.lib.pretty.RawText
1422 + IPython.lib.pretty.RawText
1425 + IPython.terminal.debugger.TerminalPdb.do_interact(self, arg)
1423 + IPython.terminal.debugger.TerminalPdb.do_interact(self, arg)
1426 + IPython.terminal.embed.Set
1424 + IPython.terminal.embed.Set
1427
1425
1428 The following items have been removed (or moved to superclass)::
1426 The following items have been removed (or moved to superclass)::
1429
1427
1430 - IPython.core.application.BaseIPythonApplication.initialize_subcommand
1428 - IPython.core.application.BaseIPythonApplication.initialize_subcommand
1431 - IPython.core.completer.Sentinel
1429 - IPython.core.completer.Sentinel
1432 - IPython.core.completer.skip_doctest
1430 - IPython.core.completer.skip_doctest
1433 - IPython.core.debugger.Tracer
1431 - IPython.core.debugger.Tracer
1434 - IPython.core.display.DisplayHandle
1432 - IPython.core.display.DisplayHandle
1435 - IPython.core.display.DisplayHandle.display
1433 - IPython.core.display.DisplayHandle.display
1436 - IPython.core.display.DisplayHandle.update
1434 - IPython.core.display.DisplayHandle.update
1437 - IPython.core.display.b2a_hex
1435 - IPython.core.display.b2a_hex
1438 - IPython.core.display.clear_output
1436 - IPython.core.display.clear_output
1439 - IPython.core.display.display
1437 - IPython.core.display.display
1440 - IPython.core.display.publish_display_data
1438 - IPython.core.display.publish_display_data
1441 - IPython.core.display.update_display
1439 - IPython.core.display.update_display
1442 - IPython.core.excolors.Deprec
1440 - IPython.core.excolors.Deprec
1443 - IPython.core.excolors.ExceptionColors
1441 - IPython.core.excolors.ExceptionColors
1444 - IPython.core.history.warn
1442 - IPython.core.history.warn
1445 - IPython.core.hooks.late_startup_hook
1443 - IPython.core.hooks.late_startup_hook
1446 - IPython.core.hooks.pre_run_code_hook
1444 - IPython.core.hooks.pre_run_code_hook
1447 - IPython.core.hooks.shutdown_hook
1445 - IPython.core.hooks.shutdown_hook
1448 - IPython.core.interactiveshell.InteractiveShell.init_deprecation_warnings
1446 - IPython.core.interactiveshell.InteractiveShell.init_deprecation_warnings
1449 - IPython.core.interactiveshell.InteractiveShell.init_readline
1447 - IPython.core.interactiveshell.InteractiveShell.init_readline
1450 - IPython.core.interactiveshell.InteractiveShell.write
1448 - IPython.core.interactiveshell.InteractiveShell.write
1451 - IPython.core.interactiveshell.InteractiveShell.write_err
1449 - IPython.core.interactiveshell.InteractiveShell.write_err
1452 - IPython.core.interactiveshell.get_default_colors
1450 - IPython.core.interactiveshell.get_default_colors
1453 - IPython.core.interactiveshell.removed_co_newlocals
1451 - IPython.core.interactiveshell.removed_co_newlocals
1454 - IPython.core.magics.execution.ExecutionMagics.profile_missing_notice
1452 - IPython.core.magics.execution.ExecutionMagics.profile_missing_notice
1455 - IPython.core.magics.script.PIPE
1453 - IPython.core.magics.script.PIPE
1456 - IPython.core.prefilter.PrefilterManager.init_transformers
1454 - IPython.core.prefilter.PrefilterManager.init_transformers
1457 - IPython.core.release.classifiers
1455 - IPython.core.release.classifiers
1458 - IPython.core.release.description
1456 - IPython.core.release.description
1459 - IPython.core.release.keywords
1457 - IPython.core.release.keywords
1460 - IPython.core.release.long_description
1458 - IPython.core.release.long_description
1461 - IPython.core.release.name
1459 - IPython.core.release.name
1462 - IPython.core.release.platforms
1460 - IPython.core.release.platforms
1463 - IPython.core.release.url
1461 - IPython.core.release.url
1464 - IPython.core.ultratb.VerboseTB.format_records
1462 - IPython.core.ultratb.VerboseTB.format_records
1465 - IPython.core.ultratb.find_recursion
1463 - IPython.core.ultratb.find_recursion
1466 - IPython.core.ultratb.findsource
1464 - IPython.core.ultratb.findsource
1467 - IPython.core.ultratb.fix_frame_records_filenames
1465 - IPython.core.ultratb.fix_frame_records_filenames
1468 - IPython.core.ultratb.inspect_error
1466 - IPython.core.ultratb.inspect_error
1469 - IPython.core.ultratb.is_recursion_error
1467 - IPython.core.ultratb.is_recursion_error
1470 - IPython.core.ultratb.with_patch_inspect
1468 - IPython.core.ultratb.with_patch_inspect
1471 - IPython.external.__all__
1469 - IPython.external.__all__
1472 - IPython.external.__builtins__
1470 - IPython.external.__builtins__
1473 - IPython.external.__cached__
1471 - IPython.external.__cached__
1474 - IPython.external.__doc__
1472 - IPython.external.__doc__
1475 - IPython.external.__file__
1473 - IPython.external.__file__
1476 - IPython.external.__loader__
1474 - IPython.external.__loader__
1477 - IPython.external.__name__
1475 - IPython.external.__name__
1478 - IPython.external.__package__
1476 - IPython.external.__package__
1479 - IPython.external.__path__
1477 - IPython.external.__path__
1480 - IPython.external.__spec__
1478 - IPython.external.__spec__
1481 - IPython.kernel.KernelConnectionInfo
1479 - IPython.kernel.KernelConnectionInfo
1482 - IPython.kernel.__builtins__
1480 - IPython.kernel.__builtins__
1483 - IPython.kernel.__cached__
1481 - IPython.kernel.__cached__
1484 - IPython.kernel.__warningregistry__
1482 - IPython.kernel.__warningregistry__
1485 - IPython.kernel.pkg
1483 - IPython.kernel.pkg
1486 - IPython.kernel.protocol_version
1484 - IPython.kernel.protocol_version
1487 - IPython.kernel.protocol_version_info
1485 - IPython.kernel.protocol_version_info
1488 - IPython.kernel.src
1486 - IPython.kernel.src
1489 - IPython.kernel.version_info
1487 - IPython.kernel.version_info
1490 - IPython.kernel.warn
1488 - IPython.kernel.warn
1491 - IPython.lib.backgroundjobs
1489 - IPython.lib.backgroundjobs
1492 - IPython.lib.backgroundjobs.BackgroundJobBase
1490 - IPython.lib.backgroundjobs.BackgroundJobBase
1493 - IPython.lib.backgroundjobs.BackgroundJobBase.run
1491 - IPython.lib.backgroundjobs.BackgroundJobBase.run
1494 - IPython.lib.backgroundjobs.BackgroundJobBase.traceback
1492 - IPython.lib.backgroundjobs.BackgroundJobBase.traceback
1495 - IPython.lib.backgroundjobs.BackgroundJobExpr
1493 - IPython.lib.backgroundjobs.BackgroundJobExpr
1496 - IPython.lib.backgroundjobs.BackgroundJobExpr.call
1494 - IPython.lib.backgroundjobs.BackgroundJobExpr.call
1497 - IPython.lib.backgroundjobs.BackgroundJobFunc
1495 - IPython.lib.backgroundjobs.BackgroundJobFunc
1498 - IPython.lib.backgroundjobs.BackgroundJobFunc.call
1496 - IPython.lib.backgroundjobs.BackgroundJobFunc.call
1499 - IPython.lib.backgroundjobs.BackgroundJobManager
1497 - IPython.lib.backgroundjobs.BackgroundJobManager
1500 - IPython.lib.backgroundjobs.BackgroundJobManager.flush
1498 - IPython.lib.backgroundjobs.BackgroundJobManager.flush
1501 - IPython.lib.backgroundjobs.BackgroundJobManager.new
1499 - IPython.lib.backgroundjobs.BackgroundJobManager.new
1502 - IPython.lib.backgroundjobs.BackgroundJobManager.remove
1500 - IPython.lib.backgroundjobs.BackgroundJobManager.remove
1503 - IPython.lib.backgroundjobs.BackgroundJobManager.result
1501 - IPython.lib.backgroundjobs.BackgroundJobManager.result
1504 - IPython.lib.backgroundjobs.BackgroundJobManager.status
1502 - IPython.lib.backgroundjobs.BackgroundJobManager.status
1505 - IPython.lib.backgroundjobs.BackgroundJobManager.traceback
1503 - IPython.lib.backgroundjobs.BackgroundJobManager.traceback
1506 - IPython.lib.backgroundjobs.__builtins__
1504 - IPython.lib.backgroundjobs.__builtins__
1507 - IPython.lib.backgroundjobs.__cached__
1505 - IPython.lib.backgroundjobs.__cached__
1508 - IPython.lib.backgroundjobs.__doc__
1506 - IPython.lib.backgroundjobs.__doc__
1509 - IPython.lib.backgroundjobs.__file__
1507 - IPython.lib.backgroundjobs.__file__
1510 - IPython.lib.backgroundjobs.__loader__
1508 - IPython.lib.backgroundjobs.__loader__
1511 - IPython.lib.backgroundjobs.__name__
1509 - IPython.lib.backgroundjobs.__name__
1512 - IPython.lib.backgroundjobs.__package__
1510 - IPython.lib.backgroundjobs.__package__
1513 - IPython.lib.backgroundjobs.__spec__
1511 - IPython.lib.backgroundjobs.__spec__
1514 - IPython.lib.kernel.__builtins__
1512 - IPython.lib.kernel.__builtins__
1515 - IPython.lib.kernel.__cached__
1513 - IPython.lib.kernel.__cached__
1516 - IPython.lib.kernel.__doc__
1514 - IPython.lib.kernel.__doc__
1517 - IPython.lib.kernel.__file__
1515 - IPython.lib.kernel.__file__
1518 - IPython.lib.kernel.__loader__
1516 - IPython.lib.kernel.__loader__
1519 - IPython.lib.kernel.__name__
1517 - IPython.lib.kernel.__name__
1520 - IPython.lib.kernel.__package__
1518 - IPython.lib.kernel.__package__
1521 - IPython.lib.kernel.__spec__
1519 - IPython.lib.kernel.__spec__
1522 - IPython.lib.kernel.__warningregistry__
1520 - IPython.lib.kernel.__warningregistry__
1523 - IPython.paths.fs_encoding
1521 - IPython.paths.fs_encoding
1524 - IPython.terminal.debugger.DEFAULT_BUFFER
1522 - IPython.terminal.debugger.DEFAULT_BUFFER
1525 - IPython.terminal.debugger.cursor_in_leading_ws
1523 - IPython.terminal.debugger.cursor_in_leading_ws
1526 - IPython.terminal.debugger.emacs_insert_mode
1524 - IPython.terminal.debugger.emacs_insert_mode
1527 - IPython.terminal.debugger.has_selection
1525 - IPython.terminal.debugger.has_selection
1528 - IPython.terminal.debugger.vi_insert_mode
1526 - IPython.terminal.debugger.vi_insert_mode
1529 - IPython.terminal.interactiveshell.DISPLAY_BANNER_DEPRECATED
1527 - IPython.terminal.interactiveshell.DISPLAY_BANNER_DEPRECATED
1530 - IPython.terminal.ipapp.TerminalIPythonApp.parse_command_line
1528 - IPython.terminal.ipapp.TerminalIPythonApp.parse_command_line
1531 - IPython.testing.test
1529 - IPython.testing.test
1532 - IPython.utils.contexts.NoOpContext
1530 - IPython.utils.contexts.NoOpContext
1533 - IPython.utils.io.IOStream
1531 - IPython.utils.io.IOStream
1534 - IPython.utils.io.IOStream.close
1532 - IPython.utils.io.IOStream.close
1535 - IPython.utils.io.IOStream.write
1533 - IPython.utils.io.IOStream.write
1536 - IPython.utils.io.IOStream.writelines
1534 - IPython.utils.io.IOStream.writelines
1537 - IPython.utils.io.__warningregistry__
1535 - IPython.utils.io.__warningregistry__
1538 - IPython.utils.io.atomic_writing
1536 - IPython.utils.io.atomic_writing
1539 - IPython.utils.io.stderr
1537 - IPython.utils.io.stderr
1540 - IPython.utils.io.stdin
1538 - IPython.utils.io.stdin
1541 - IPython.utils.io.stdout
1539 - IPython.utils.io.stdout
1542 - IPython.utils.io.unicode_std_stream
1540 - IPython.utils.io.unicode_std_stream
1543 - IPython.utils.path.get_ipython_cache_dir
1541 - IPython.utils.path.get_ipython_cache_dir
1544 - IPython.utils.path.get_ipython_dir
1542 - IPython.utils.path.get_ipython_dir
1545 - IPython.utils.path.get_ipython_module_path
1543 - IPython.utils.path.get_ipython_module_path
1546 - IPython.utils.path.get_ipython_package_dir
1544 - IPython.utils.path.get_ipython_package_dir
1547 - IPython.utils.path.locate_profile
1545 - IPython.utils.path.locate_profile
1548 - IPython.utils.path.unquote_filename
1546 - IPython.utils.path.unquote_filename
1549 - IPython.utils.py3compat.PY2
1547 - IPython.utils.py3compat.PY2
1550 - IPython.utils.py3compat.PY3
1548 - IPython.utils.py3compat.PY3
1551 - IPython.utils.py3compat.buffer_to_bytes
1549 - IPython.utils.py3compat.buffer_to_bytes
1552 - IPython.utils.py3compat.builtin_mod_name
1550 - IPython.utils.py3compat.builtin_mod_name
1553 - IPython.utils.py3compat.cast_bytes
1551 - IPython.utils.py3compat.cast_bytes
1554 - IPython.utils.py3compat.getcwd
1552 - IPython.utils.py3compat.getcwd
1555 - IPython.utils.py3compat.isidentifier
1553 - IPython.utils.py3compat.isidentifier
1556 - IPython.utils.py3compat.u_format
1554 - IPython.utils.py3compat.u_format
1557
1555
1558 The following signatures differ between 7.x and 8.0::
1556 The following signatures differ between 7.x and 8.0::
1559
1557
1560 - IPython.core.completer.IPCompleter.unicode_name_matches(self, text)
1558 - IPython.core.completer.IPCompleter.unicode_name_matches(self, text)
1561 + IPython.core.completer.IPCompleter.unicode_name_matches(text)
1559 + IPython.core.completer.IPCompleter.unicode_name_matches(text)
1562
1560
1563 - IPython.core.completer.match_dict_keys(keys, prefix, delims)
1561 - IPython.core.completer.match_dict_keys(keys, prefix, delims)
1564 + IPython.core.completer.match_dict_keys(keys, prefix, delims, extra_prefix='None')
1562 + IPython.core.completer.match_dict_keys(keys, prefix, delims, extra_prefix='None')
1565
1563
1566 - IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0)
1564 - IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0)
1567 + IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0, omit_sections='()')
1565 + IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0, omit_sections='()')
1568
1566
1569 - IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None', _warn_deprecated=True)
1567 - IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None', _warn_deprecated=True)
1570 + IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None')
1568 + IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None')
1571
1569
1572 - IPython.core.oinspect.Inspector.info(self, obj, oname='', formatter='None', info='None', detail_level=0)
1570 - IPython.core.oinspect.Inspector.info(self, obj, oname='', formatter='None', info='None', detail_level=0)
1573 + IPython.core.oinspect.Inspector.info(self, obj, oname='', info='None', detail_level=0)
1571 + IPython.core.oinspect.Inspector.info(self, obj, oname='', info='None', detail_level=0)
1574
1572
1575 - IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True)
1573 - IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True)
1576 + IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True, omit_sections='()')
1574 + IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True, omit_sections='()')
1577
1575
1578 - IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path='None', overwrite=False)
1576 - IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path='None', overwrite=False)
1579 + IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path, overwrite=False)
1577 + IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path, overwrite=False)
1580
1578
1581 - IPython.core.ultratb.VerboseTB.format_record(self, frame, file, lnum, func, lines, index)
1579 - IPython.core.ultratb.VerboseTB.format_record(self, frame, file, lnum, func, lines, index)
1582 + IPython.core.ultratb.VerboseTB.format_record(self, frame_info)
1580 + IPython.core.ultratb.VerboseTB.format_record(self, frame_info)
1583
1581
1584 - IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, display_banner='None', global_ns='None', compile_flags='None')
1582 - IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, display_banner='None', global_ns='None', compile_flags='None')
1585 + IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, compile_flags='None')
1583 + IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, compile_flags='None')
1586
1584
1587 - IPython.terminal.embed.embed(**kwargs)
1585 - IPython.terminal.embed.embed(**kwargs)
1588 + IPython.terminal.embed.embed(*, header='', compile_flags='None', **kwargs)
1586 + IPython.terminal.embed.embed(*, header='', compile_flags='None', **kwargs)
1589
1587
1590 - IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self, display_banner='<object object at 0xffffff>')
1588 - IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self, display_banner='<object object at 0xffffff>')
1591 + IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self)
1589 + IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self)
1592
1590
1593 - IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self, display_banner='<object object at 0xffffff>')
1591 - IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self, display_banner='<object object at 0xffffff>')
1594 + IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self)
1592 + IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self)
1595
1593
1596 - IPython.utils.path.get_py_filename(name, force_win32='None')
1594 - IPython.utils.path.get_py_filename(name, force_win32='None')
1597 + IPython.utils.path.get_py_filename(name)
1595 + IPython.utils.path.get_py_filename(name)
1598
1596
1599 The following are new attributes (that might be inherited)::
1597 The following are new attributes (that might be inherited)::
1600
1598
1601 + IPython.core.completer.IPCompleter.unicode_names
1599 + IPython.core.completer.IPCompleter.unicode_names
1602 + IPython.core.debugger.InterruptiblePdb.precmd
1600 + IPython.core.debugger.InterruptiblePdb.precmd
1603 + IPython.core.debugger.Pdb.precmd
1601 + IPython.core.debugger.Pdb.precmd
1604 + IPython.core.ultratb.AutoFormattedTB.has_colors
1602 + IPython.core.ultratb.AutoFormattedTB.has_colors
1605 + IPython.core.ultratb.ColorTB.has_colors
1603 + IPython.core.ultratb.ColorTB.has_colors
1606 + IPython.core.ultratb.FormattedTB.has_colors
1604 + IPython.core.ultratb.FormattedTB.has_colors
1607 + IPython.core.ultratb.ListTB.has_colors
1605 + IPython.core.ultratb.ListTB.has_colors
1608 + IPython.core.ultratb.SyntaxTB.has_colors
1606 + IPython.core.ultratb.SyntaxTB.has_colors
1609 + IPython.core.ultratb.TBTools.has_colors
1607 + IPython.core.ultratb.TBTools.has_colors
1610 + IPython.core.ultratb.VerboseTB.has_colors
1608 + IPython.core.ultratb.VerboseTB.has_colors
1611 + IPython.terminal.debugger.TerminalPdb.do_interact
1609 + IPython.terminal.debugger.TerminalPdb.do_interact
1612 + IPython.terminal.debugger.TerminalPdb.precmd
1610 + IPython.terminal.debugger.TerminalPdb.precmd
1613
1611
1614 The following attribute/methods have been removed::
1612 The following attribute/methods have been removed::
1615
1613
1616 - IPython.core.application.BaseIPythonApplication.deprecated_subcommands
1614 - IPython.core.application.BaseIPythonApplication.deprecated_subcommands
1617 - IPython.core.ultratb.AutoFormattedTB.format_records
1615 - IPython.core.ultratb.AutoFormattedTB.format_records
1618 - IPython.core.ultratb.ColorTB.format_records
1616 - IPython.core.ultratb.ColorTB.format_records
1619 - IPython.core.ultratb.FormattedTB.format_records
1617 - IPython.core.ultratb.FormattedTB.format_records
1620 - IPython.terminal.embed.InteractiveShellEmbed.init_deprecation_warnings
1618 - IPython.terminal.embed.InteractiveShellEmbed.init_deprecation_warnings
1621 - IPython.terminal.embed.InteractiveShellEmbed.init_readline
1619 - IPython.terminal.embed.InteractiveShellEmbed.init_readline
1622 - IPython.terminal.embed.InteractiveShellEmbed.write
1620 - IPython.terminal.embed.InteractiveShellEmbed.write
1623 - IPython.terminal.embed.InteractiveShellEmbed.write_err
1621 - IPython.terminal.embed.InteractiveShellEmbed.write_err
1624 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_deprecation_warnings
1622 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_deprecation_warnings
1625 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_readline
1623 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_readline
1626 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write
1624 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write
1627 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write_err
1625 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write_err
1628 - IPython.terminal.ipapp.LocateIPythonApp.deprecated_subcommands
1626 - IPython.terminal.ipapp.LocateIPythonApp.deprecated_subcommands
1629 - IPython.terminal.ipapp.LocateIPythonApp.initialize_subcommand
1627 - IPython.terminal.ipapp.LocateIPythonApp.initialize_subcommand
1630 - IPython.terminal.ipapp.TerminalIPythonApp.deprecated_subcommands
1628 - IPython.terminal.ipapp.TerminalIPythonApp.deprecated_subcommands
1631 - IPython.terminal.ipapp.TerminalIPythonApp.initialize_subcommand
1629 - IPython.terminal.ipapp.TerminalIPythonApp.initialize_subcommand
General Comments 0
You need to be logged in to leave comments. Login now