##// END OF EJS Templates
Add a link to 8.0 milestone
Jason Grout -
r27419:774ebbd5 jasongrout-patch-1
parent child Browse files
Show More
@@ -1,898 +1,897 b''
1 ============
1 ============
2 8.x Series
2 8.x Series
3 ============
3 ============
4
4
5 IPython 8.0
5 IPython 8.0
6 -----------
6 -----------
7
7
8 IPython 8.0 is bringing a large number of new features and improvements to both the
8 IPython 8.0 is bringing a large number of new features and improvements to both the
9 user of the terminal and of the kernel via Jupyter. The removal of compatibility
9 user of the terminal and of the kernel via Jupyter. The removal of compatibility
10 with older version of Python is also the opportunity to do a couple of
10 with older version of Python is also the opportunity to do a couple of
11 performance improvement in particular with respect to startup time.
11 performance improvement in particular with respect to startup time.
12 The 8.x branch started diverging from its predecessor around IPython 7.12
12 The 8.x branch started diverging from its predecessor around IPython 7.12
13 (January 2020).
13 (January 2020).
14
14
15 This release contains 250+ pull requests, in addition to many of the features
15 This release contains 250+ pull requests, in addition to many of the features
16 and backports that have made it to the 7.x branch. All PRs that went into this
16 and backports that have made it to the 7.x branch. Please see the
17 released are properly tagged with the 8.0 milestone if you wish to have a more
17 `8.0 milestone <https://github.com/ipython/ipython/milestone/73?closed=1>`__ for the full list of pull requests.
18 in depth look at the changes.
19
18
20 Please fell free to send pull requests to updates those notes after release,
19 Please fell free to send pull requests to updates those notes after release,
21 I have likely forgotten a few things reviewing 250+ PRs.
20 I have likely forgotten a few things reviewing 250+ PRs.
22
21
23 Dependencies changes/downstream packaging
22 Dependencies changes/downstream packaging
24 -----------------------------------------
23 -----------------------------------------
25
24
26 Most of our building steps have been changed to be (mostly) declarative
25 Most of our building steps have been changed to be (mostly) declarative
27 and follow PEP 517. We are trying to completely remove ``setup.py`` (:ghpull:`13238`) and are
26 and follow PEP 517. We are trying to completely remove ``setup.py`` (:ghpull:`13238`) and are
28 looking for help to do so.
27 looking for help to do so.
29
28
30 - minimum supported ``traitlets`` version is now 5+
29 - minimum supported ``traitlets`` version is now 5+
31 - we now require ``stack_data``
30 - we now require ``stack_data``
32 - minimal Python is now 3.8
31 - minimal Python is now 3.8
33 - ``nose`` is not a testing requirement anymore
32 - ``nose`` is not a testing requirement anymore
34 - ``pytest`` replaces nose.
33 - ``pytest`` replaces nose.
35 - ``iptest``/``iptest3`` cli entrypoints do not exists anymore.
34 - ``iptest``/``iptest3`` cli entrypoints do not exists anymore.
36 - minimum officially support ``numpy`` version has been bumped, but this should
35 - minimum officially support ``numpy`` version has been bumped, but this should
37 not have much effect on packaging.
36 not have much effect on packaging.
38
37
39
38
40 Deprecation and removal
39 Deprecation and removal
41 -----------------------
40 -----------------------
42
41
43 We removed almost all features, arguments, functions, and modules that were
42 We removed almost all features, arguments, functions, and modules that were
44 marked as deprecated between IPython 1.0 and 5.0. As a reminder, 5.0 was released
43 marked as deprecated between IPython 1.0 and 5.0. As a reminder, 5.0 was released
45 in 2016, and 1.0 in 2013. Last release of the 5 branch was 5.10.0, in May 2020.
44 in 2016, and 1.0 in 2013. Last release of the 5 branch was 5.10.0, in May 2020.
46 The few remaining deprecated features we left have better deprecation warnings
45 The few remaining deprecated features we left have better deprecation warnings
47 or have been turned into explicit errors for better error messages.
46 or have been turned into explicit errors for better error messages.
48
47
49 I will use this occasion to add the following requests to anyone emitting a
48 I will use this occasion to add the following requests to anyone emitting a
50 deprecation warning:
49 deprecation warning:
51
50
52 - Please use at least ``stacklevel=2`` so that the warning is emitted into the
51 - Please use at least ``stacklevel=2`` so that the warning is emitted into the
53 caller context, and not the callee one.
52 caller context, and not the callee one.
54 - Please add **since which version** something is deprecated.
53 - Please add **since which version** something is deprecated.
55
54
56 As a side note, it is much easier to conditionally compare version
55 As a side note, it is much easier to conditionally compare version
57 numbers rather than using ``try/except`` when functionality changes with a version.
56 numbers rather than using ``try/except`` when functionality changes with a version.
58
57
59 I won't list all the removed features here, but modules like ``IPython.kernel``,
58 I won't list all the removed features here, but modules like ``IPython.kernel``,
60 which was just a shim module around ``ipykernel`` for the past 8 years, have been
59 which was just a shim module around ``ipykernel`` for the past 8 years, have been
61 removed, and so many other similar things that pre-date the name **Jupyter**
60 removed, and so many other similar things that pre-date the name **Jupyter**
62 itself.
61 itself.
63
62
64 We no longer need to add ``IPyhton.extensions`` to the PYTHONPATH because that is being
63 We no longer need to add ``IPython.extensions`` to the PYTHONPATH because that is being
65 handled by ``load_extension``.
64 handled by ``load_extension``.
66
65
67 We are also removing ``Cythonmagic``, ``sympyprinting`` and ``rmagic`` as they are now in
66 We are also removing ``Cythonmagic``, ``sympyprinting`` and ``rmagic`` as they are now in
68 other packages and no longer need to be inside IPython.
67 other packages and no longer need to be inside IPython.
69
68
70
69
71 Documentation
70 Documentation
72 -------------
71 -------------
73
72
74 The majority of our docstrings have now been reformatted and automatically fixed by
73 The majority of our docstrings have now been reformatted and automatically fixed by
75 the experimental `VΓ©lin <https://pypi.org/project/velin/>`_ project to conform
74 the experimental `VΓ©lin <https://pypi.org/project/velin/>`_ project to conform
76 to numpydoc.
75 to numpydoc.
77
76
78 Type annotations
77 Type annotations
79 ----------------
78 ----------------
80
79
81 While IPython itself is highly dynamic and can't be completely typed, many of
80 While IPython itself is highly dynamic and can't be completely typed, many of
82 the functions now have type annotations, and part of the codebase is now checked
81 the functions now have type annotations, and part of the codebase is now checked
83 by mypy.
82 by mypy.
84
83
85
84
86 Featured changes
85 Featured changes
87 ----------------
86 ----------------
88
87
89 Here is a features list of changes in IPython 8.0. This is of course non-exhaustive.
88 Here is a features list of changes in IPython 8.0. This is of course non-exhaustive.
90 Please note as well that many features have been added in the 7.x branch as well
89 Please note as well that many features have been added in the 7.x branch as well
91 (and hence why you want to read the 7.x what's new notes), in particular
90 (and hence why you want to read the 7.x what's new notes), in particular
92 features contributed by QuantStack (with respect to debugger protocol and Xeus
91 features contributed by QuantStack (with respect to debugger protocol and Xeus
93 Python), as well as many debugger features that I was pleased to implement as
92 Python), as well as many debugger features that I was pleased to implement as
94 part of my work at QuanSight and sponsored by DE Shaw.
93 part of my work at QuanSight and sponsored by DE Shaw.
95
94
96 Traceback improvements
95 Traceback improvements
97 ~~~~~~~~~~~~~~~~~~~~~~
96 ~~~~~~~~~~~~~~~~~~~~~~
98
97
99 Previously, error tracebacks for errors happening in code cells were showing a
98 Previously, error tracebacks for errors happening in code cells were showing a
100 hash, the one used for compiling the Python AST::
99 hash, the one used for compiling the Python AST::
101
100
102 In [1]: def foo():
101 In [1]: def foo():
103 ...: return 3 / 0
102 ...: return 3 / 0
104 ...:
103 ...:
105
104
106 In [2]: foo()
105 In [2]: foo()
107 ---------------------------------------------------------------------------
106 ---------------------------------------------------------------------------
108 ZeroDivisionError Traceback (most recent call last)
107 ZeroDivisionError Traceback (most recent call last)
109 <ipython-input-2-c19b6d9633cf> in <module>
108 <ipython-input-2-c19b6d9633cf> in <module>
110 ----> 1 foo()
109 ----> 1 foo()
111
110
112 <ipython-input-1-1595a74c32d5> in foo()
111 <ipython-input-1-1595a74c32d5> in foo()
113 1 def foo():
112 1 def foo():
114 ----> 2 return 3 / 0
113 ----> 2 return 3 / 0
115 3
114 3
116
115
117 ZeroDivisionError: division by zero
116 ZeroDivisionError: division by zero
118
117
119 The error traceback is now correctly formatted, showing the cell number in which the error happened::
118 The error traceback is now correctly formatted, showing the cell number in which the error happened::
120
119
121 In [1]: def foo():
120 In [1]: def foo():
122 ...: return 3 / 0
121 ...: return 3 / 0
123 ...:
122 ...:
124
123
125 Input In [2]: foo()
124 Input In [2]: foo()
126 ---------------------------------------------------------------------------
125 ---------------------------------------------------------------------------
127 ZeroDivisionError Traceback (most recent call last)
126 ZeroDivisionError Traceback (most recent call last)
128 input In [2], in <module>
127 input In [2], in <module>
129 ----> 1 foo()
128 ----> 1 foo()
130
129
131 Input In [1], in foo()
130 Input In [1], in foo()
132 1 def foo():
131 1 def foo():
133 ----> 2 return 3 / 0
132 ----> 2 return 3 / 0
134
133
135 ZeroDivisionError: division by zero
134 ZeroDivisionError: division by zero
136
135
137 The ``stack_data`` package has been integrated, which provides smarter information in the traceback;
136 The ``stack_data`` package has been integrated, which provides smarter information in the traceback;
138 in particular it will highlight the AST node where an error occurs which can help to quickly narrow down errors.
137 in particular it will highlight the AST node where an error occurs which can help to quickly narrow down errors.
139
138
140 For example in the following snippet::
139 For example in the following snippet::
141
140
142 def foo(i):
141 def foo(i):
143 x = [[[0]]]
142 x = [[[0]]]
144 return x[0][i][0]
143 return x[0][i][0]
145
144
146
145
147 def bar():
146 def bar():
148 return foo(0) + foo(
147 return foo(0) + foo(
149 1
148 1
150 ) + foo(2)
149 ) + foo(2)
151
150
152
151
153 calling ``bar()`` would raise an ``IndexError`` on the return line of ``foo``,
152 calling ``bar()`` would raise an ``IndexError`` on the return line of ``foo``,
154 and IPython 8.0 is capable of telling you where the index error occurs::
153 and IPython 8.0 is capable of telling you where the index error occurs::
155
154
156
155
157 IndexError
156 IndexError
158 Input In [2], in <module>
157 Input In [2], in <module>
159 ----> 1 bar()
158 ----> 1 bar()
160 ^^^^^
159 ^^^^^
161
160
162 Input In [1], in bar()
161 Input In [1], in bar()
163 6 def bar():
162 6 def bar():
164 ----> 7 return foo(0) + foo(
163 ----> 7 return foo(0) + foo(
165 ^^^^
164 ^^^^
166 8 1
165 8 1
167 ^^^^^^^^
166 ^^^^^^^^
168 9 ) + foo(2)
167 9 ) + foo(2)
169 ^^^^
168 ^^^^
170
169
171 Input In [1], in foo(i)
170 Input In [1], in foo(i)
172 1 def foo(i):
171 1 def foo(i):
173 2 x = [[[0]]]
172 2 x = [[[0]]]
174 ----> 3 return x[0][i][0]
173 ----> 3 return x[0][i][0]
175 ^^^^^^^
174 ^^^^^^^
176
175
177 The corresponding locations marked here with ``^`` will show up highlighted in
176 The corresponding locations marked here with ``^`` will show up highlighted in
178 the terminal and notebooks.
177 the terminal and notebooks.
179
178
180 Finally, a colon ``::`` and line number is appended after a filename in
179 Finally, a colon ``::`` and line number is appended after a filename in
181 traceback::
180 traceback::
182
181
183
182
184 ZeroDivisionError Traceback (most recent call last)
183 ZeroDivisionError Traceback (most recent call last)
185 File ~/error.py:4, in <module>
184 File ~/error.py:4, in <module>
186 1 def f():
185 1 def f():
187 2 1/0
186 2 1/0
188 ----> 4 f()
187 ----> 4 f()
189
188
190 File ~/error.py:2, in f()
189 File ~/error.py:2, in f()
191 1 def f():
190 1 def f():
192 ----> 2 1/0
191 ----> 2 1/0
193
192
194 Many terminals and editors have integrations enabling you to directly jump to the
193 Many terminals and editors have integrations enabling you to directly jump to the
195 relevant file/line when this syntax is used, so this small addition may have a high
194 relevant file/line when this syntax is used, so this small addition may have a high
196 impact on productivity.
195 impact on productivity.
197
196
198
197
199 Autosuggestons
198 Autosuggestons
200 ~~~~~~~~~~~~~~
199 ~~~~~~~~~~~~~~
201
200
202 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>`__.
201 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>`__.
203
202
204 `Ptpython <https://github.com/prompt-toolkit/ptpython#ptpython>`__ allows users to enable this feature in
203 `Ptpython <https://github.com/prompt-toolkit/ptpython#ptpython>`__ allows users to enable this feature in
205 `ptpython/config.py <https://github.com/prompt-toolkit/ptpython/blob/master/examples/ptpython_config/config.py#L90>`__.
204 `ptpython/config.py <https://github.com/prompt-toolkit/ptpython/blob/master/examples/ptpython_config/config.py#L90>`__.
206
205
207 This feature allows users to accept autosuggestions with ctrl e, ctrl f,
206 This feature allows users to accept autosuggestions with ctrl e, ctrl f,
208 or right arrow as described below.
207 or right arrow as described below.
209
208
210 1. Start ipython
209 1. Start ipython
211
210
212 .. image:: ../_images/8.0/auto_suggest_1_prompt_no_text.png
211 .. image:: ../_images/8.0/auto_suggest_1_prompt_no_text.png
213
212
214 2. Run ``print("hello")``
213 2. Run ``print("hello")``
215
214
216 .. image:: ../_images/8.0/auto_suggest_2_print_hello_suggest.png
215 .. image:: ../_images/8.0/auto_suggest_2_print_hello_suggest.png
217
216
218 3. start typing ``print`` again to see the autosuggestion
217 3. start typing ``print`` again to see the autosuggestion
219
218
220 .. image:: ../_images/8.0/auto_suggest_3_print_hello_suggest.png
219 .. image:: ../_images/8.0/auto_suggest_3_print_hello_suggest.png
221
220
222 4. Press ``ctrl-f``, or ``ctrl-e``, or ``right-arrow`` to accept the suggestion
221 4. Press ``ctrl-f``, or ``ctrl-e``, or ``right-arrow`` to accept the suggestion
223
222
224 .. image:: ../_images/8.0/auto_suggest_4_print_hello.png
223 .. image:: ../_images/8.0/auto_suggest_4_print_hello.png
225
224
226 You can also complete word by word:
225 You can also complete word by word:
227
226
228 1. Run ``def say_hello(): print("hello")``
227 1. Run ``def say_hello(): print("hello")``
229
228
230 .. image:: ../_images/8.0/auto_suggest_second_prompt.png
229 .. image:: ../_images/8.0/auto_suggest_second_prompt.png
231
230
232 2. Start typing the first letter if ``def`` to see the autosuggestion
231 2. Start typing the first letter if ``def`` to see the autosuggestion
233
232
234 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
233 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
235
234
236 3. Press ``alt-f`` (or ``escape`` followed by ``f``), to accept the first word of the suggestion
235 3. Press ``alt-f`` (or ``escape`` followed by ``f``), to accept the first word of the suggestion
237
236
238 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
237 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
239
238
240 Importantly, this feature does not interfere with tab completion:
239 Importantly, this feature does not interfere with tab completion:
241
240
242 1. After running ``def say_hello(): print("hello")``, press d
241 1. After running ``def say_hello(): print("hello")``, press d
243
242
244 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
243 .. image:: ../_images/8.0/auto_suggest_d_phantom.png
245
244
246 2. Press Tab to start tab completion
245 2. Press Tab to start tab completion
247
246
248 .. image:: ../_images/8.0/auto_suggest_d_completions.png
247 .. image:: ../_images/8.0/auto_suggest_d_completions.png
249
248
250 3A. Press Tab again to select the first option
249 3A. Press Tab again to select the first option
251
250
252 .. image:: ../_images/8.0/auto_suggest_def_completions.png
251 .. image:: ../_images/8.0/auto_suggest_def_completions.png
253
252
254 3B. Press ``alt f`` (``escape``, ``f``) to accept to accept the first word of the suggestion
253 3B. Press ``alt f`` (``escape``, ``f``) to accept to accept the first word of the suggestion
255
254
256 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
255 .. image:: ../_images/8.0/auto_suggest_def_phantom.png
257
256
258 3C. Press ``ctrl-f`` or ``ctrl-e`` to accept the entire suggestion
257 3C. Press ``ctrl-f`` or ``ctrl-e`` to accept the entire suggestion
259
258
260 .. image:: ../_images/8.0/auto_suggest_match_parens.png
259 .. image:: ../_images/8.0/auto_suggest_match_parens.png
261
260
262
261
263 Currently, autosuggestions are only shown in the emacs or vi insert editing modes:
262 Currently, autosuggestions are only shown in the emacs or vi insert editing modes:
264
263
265 - The ctrl e, ctrl f, and alt f shortcuts work by default in emacs mode.
264 - The ctrl e, ctrl f, and alt f shortcuts work by default in emacs mode.
266 - 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/>`__.
265 - 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/>`__.
267
266
268
267
269 Show pinfo information in ipdb using "?" and "??"
268 Show pinfo information in ipdb using "?" and "??"
270 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
269 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
271
270
272 In IPDB, it is now possible to show the information about an object using "?"
271 In IPDB, it is now possible to show the information about an object using "?"
273 and "??", in much the same way that it can be done when using the IPython prompt::
272 and "??", in much the same way that it can be done when using the IPython prompt::
274
273
275 ipdb> partial?
274 ipdb> partial?
276 Init signature: partial(self, /, *args, **kwargs)
275 Init signature: partial(self, /, *args, **kwargs)
277 Docstring:
276 Docstring:
278 partial(func, *args, **keywords) - new function with partial application
277 partial(func, *args, **keywords) - new function with partial application
279 of the given arguments and keywords.
278 of the given arguments and keywords.
280 File: ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py
279 File: ~/.pyenv/versions/3.8.6/lib/python3.8/functools.py
281 Type: type
280 Type: type
282 Subclasses:
281 Subclasses:
283
282
284 Previously, ``pinfo`` or ``pinfo2`` command had to be used for this purpose.
283 Previously, ``pinfo`` or ``pinfo2`` command had to be used for this purpose.
285
284
286
285
287 Autoreload 3 feature
286 Autoreload 3 feature
288 ~~~~~~~~~~~~~~~~~~~~
287 ~~~~~~~~~~~~~~~~~~~~
289
288
290 Example: When an IPython session is run with the 'autoreload' extension loaded,
289 Example: When an IPython session is run with the 'autoreload' extension loaded,
291 you will now have the option '3' to select, which means the following:
290 you will now have the option '3' to select, which means the following:
292
291
293 1. replicate all functionality from option 2
292 1. replicate all functionality from option 2
294 2. autoload all new funcs/classes/enums/globals from the module when they are added
293 2. autoload all new funcs/classes/enums/globals from the module when they are added
295 3. autoload all newly imported funcs/classes/enums/globals from external modules
294 3. autoload all newly imported funcs/classes/enums/globals from external modules
296
295
297 Try ``%autoreload 3`` in an IPython session after running ``%load_ext autoreload``.
296 Try ``%autoreload 3`` in an IPython session after running ``%load_ext autoreload``.
298
297
299 For more information please see the following unit test : ``extensions/tests/test_autoreload.py:test_autoload_newly_added_objects``
298 For more information please see the following unit test : ``extensions/tests/test_autoreload.py:test_autoload_newly_added_objects``
300
299
301 Auto formatting with black in the CLI
300 Auto formatting with black in the CLI
302 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
301 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
303
302
304 If ``black`` is installed in the same environment as IPython, terminal IPython
303 If ``black`` is installed in the same environment as IPython, terminal IPython
305 will now *by default* reformat the code in the CLI when possible. You can
304 will now *by default* reformat the code in the CLI when possible. You can
306 disable this with ``--TerminalInteractiveShell.autoformatter=None``.
305 disable this with ``--TerminalInteractiveShell.autoformatter=None``.
307
306
308 This feature was present in 7.x, but disabled by default.
307 This feature was present in 7.x, but disabled by default.
309
308
310
309
311 History Range Glob feature
310 History Range Glob feature
312 ~~~~~~~~~~~~~~~~~~~~~~~~~~
311 ~~~~~~~~~~~~~~~~~~~~~~~~~~
313
312
314 Previously, when using ``%history``, users could specify either
313 Previously, when using ``%history``, users could specify either
315 a range of sessions and lines, for example:
314 a range of sessions and lines, for example:
316
315
317 .. code-block:: python
316 .. code-block:: python
318
317
319 ~8/1-~6/5 # see history from the first line of 8 sessions ago,
318 ~8/1-~6/5 # see history from the first line of 8 sessions ago,
320 # to the fifth line of 6 sessions ago.``
319 # to the fifth line of 6 sessions ago.``
321
320
322 Or users could specify a glob pattern:
321 Or users could specify a glob pattern:
323
322
324 .. code-block:: python
323 .. code-block:: python
325
324
326 -g <pattern> # glob ALL history for the specified pattern.
325 -g <pattern> # glob ALL history for the specified pattern.
327
326
328 However users could *not* specify both.
327 However users could *not* specify both.
329
328
330 If a user *did* specify both a range and a glob pattern,
329 If a user *did* specify both a range and a glob pattern,
331 then the glob pattern would be used (globbing *all* history) *and the range would be ignored*.
330 then the glob pattern would be used (globbing *all* history) *and the range would be ignored*.
332
331
333 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.
332 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.
334
333
335 Don't start a multi-line cell with sunken parenthesis
334 Don't start a multi-line cell with sunken parenthesis
336 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
337
336
338 From now on, IPython will not ask for the next line of input when given a single
337 From now on, IPython will not ask for the next line of input when given a single
339 line with more closing than opening brackets. For example, this means that if
338 line with more closing than opening brackets. For example, this means that if
340 you (mis)type ``]]`` instead of ``[]``, a ``SyntaxError`` will show up, instead of
339 you (mis)type ``]]`` instead of ``[]``, a ``SyntaxError`` will show up, instead of
341 the ``...:`` prompt continuation.
340 the ``...:`` prompt continuation.
342
341
343 IPython shell for ipdb interact
342 IPython shell for ipdb interact
344 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
343 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
345
344
346 The ipdb ``interact`` starts an IPython shell instead of Python's built-in ``code.interact()``.
345 The ipdb ``interact`` starts an IPython shell instead of Python's built-in ``code.interact()``.
347
346
348 Automatic Vi prompt stripping
347 Automatic Vi prompt stripping
349 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
348 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
350
349
351 When pasting code into IPython, it will strip the leading prompt characters if
350 When pasting code into IPython, it will strip the leading prompt characters if
352 there are any. For example, you can paste the following code into the console -
351 there are any. For example, you can paste the following code into the console -
353 it will still work, even though each line is prefixed with prompts (`In`,
352 it will still work, even though each line is prefixed with prompts (`In`,
354 `Out`)::
353 `Out`)::
355
354
356 In [1]: 2 * 2 == 4
355 In [1]: 2 * 2 == 4
357 Out[1]: True
356 Out[1]: True
358
357
359 In [2]: print("This still works as pasted")
358 In [2]: print("This still works as pasted")
360
359
361
360
362 Previously, this was not the case for the Vi-mode prompts::
361 Previously, this was not the case for the Vi-mode prompts::
363
362
364 In [1]: [ins] In [13]: 2 * 2 == 4
363 In [1]: [ins] In [13]: 2 * 2 == 4
365 ...: Out[13]: True
364 ...: Out[13]: True
366 ...:
365 ...:
367 File "<ipython-input-1-727bb88eaf33>", line 1
366 File "<ipython-input-1-727bb88eaf33>", line 1
368 [ins] In [13]: 2 * 2 == 4
367 [ins] In [13]: 2 * 2 == 4
369 ^
368 ^
370 SyntaxError: invalid syntax
369 SyntaxError: invalid syntax
371
370
372 This is now fixed, and Vi prompt prefixes - ``[ins]`` and ``[nav]`` - are
371 This is now fixed, and Vi prompt prefixes - ``[ins]`` and ``[nav]`` - are
373 skipped just as the normal ``In`` would be.
372 skipped just as the normal ``In`` would be.
374
373
375 IPython shell can be started in the Vi mode using ``ipython --TerminalInteractiveShell.editing_mode=vi``,
374 IPython shell can be started in the Vi mode using ``ipython --TerminalInteractiveShell.editing_mode=vi``,
376 You should be able to change mode dynamically with ``%config TerminalInteractiveShell.editing_mode='vi'``
375 You should be able to change mode dynamically with ``%config TerminalInteractiveShell.editing_mode='vi'``
377
376
378 Empty History Ranges
377 Empty History Ranges
379 ~~~~~~~~~~~~~~~~~~~~
378 ~~~~~~~~~~~~~~~~~~~~
380
379
381 A number of magics that take history ranges can now be used with an empty
380 A number of magics that take history ranges can now be used with an empty
382 range. These magics are:
381 range. These magics are:
383
382
384 * ``%save``
383 * ``%save``
385 * ``%load``
384 * ``%load``
386 * ``%pastebin``
385 * ``%pastebin``
387 * ``%pycat``
386 * ``%pycat``
388
387
389 Using them this way will make them take the history of the current session up
388 Using them this way will make them take the history of the current session up
390 to the point of the magic call (such that the magic itself will not be
389 to the point of the magic call (such that the magic itself will not be
391 included).
390 included).
392
391
393 Therefore it is now possible to save the whole history to a file using
392 Therefore it is now possible to save the whole history to a file using
394 ``%save <filename>``, load and edit it using ``%load`` (makes for a nice usage
393 ``%save <filename>``, load and edit it using ``%load`` (makes for a nice usage
395 when followed with :kbd:`F2`), send it to `dpaste.org <http://dpast.org>`_ using
394 when followed with :kbd:`F2`), send it to `dpaste.org <http://dpast.org>`_ using
396 ``%pastebin``, or view the whole thing syntax-highlighted with a single
395 ``%pastebin``, or view the whole thing syntax-highlighted with a single
397 ``%pycat``.
396 ``%pycat``.
398
397
399
398
400 Windows timing implementation: Switch to process_time
399 Windows timing implementation: Switch to process_time
401 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
400 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
402 Timing on Windows, for example with ``%%time``, was changed from being based on ``time.perf_counter``
401 Timing on Windows, for example with ``%%time``, was changed from being based on ``time.perf_counter``
403 (which counted time even when the process was sleeping) to being based on ``time.process_time`` instead
402 (which counted time even when the process was sleeping) to being based on ``time.process_time`` instead
404 (which only counts CPU time). This brings it closer to the behavior on Linux. See :ghpull:`12984`.
403 (which only counts CPU time). This brings it closer to the behavior on Linux. See :ghpull:`12984`.
405
404
406 Miscellaneous
405 Miscellaneous
407 ~~~~~~~~~~~~~
406 ~~~~~~~~~~~~~
408 - Non-text formatters are not disabled in the terminal, which should simplify
407 - Non-text formatters are not disabled in the terminal, which should simplify
409 writing extensions displaying images or other mimetypes in supporting terminals.
408 writing extensions displaying images or other mimetypes in supporting terminals.
410 :ghpull:`12315`
409 :ghpull:`12315`
411 - It is now possible to automatically insert matching brackets in Terminal IPython using the
410 - It is now possible to automatically insert matching brackets in Terminal IPython using the
412 ``TerminalInteractiveShell.auto_match=True`` option. :ghpull:`12586`
411 ``TerminalInteractiveShell.auto_match=True`` option. :ghpull:`12586`
413 - We are thinking of deprecating the current ``%%javascript`` magic in favor of a better replacement. See :ghpull:`13376`.
412 - We are thinking of deprecating the current ``%%javascript`` magic in favor of a better replacement. See :ghpull:`13376`.
414 - ``~`` is now expanded when part of a path in most magics :ghpull:`13385`
413 - ``~`` is now expanded when part of a path in most magics :ghpull:`13385`
415 - ``%/%%timeit`` magic now adds a comma every thousands to make reading a long number easier :ghpull:`13379`
414 - ``%/%%timeit`` magic now adds a comma every thousands to make reading a long number easier :ghpull:`13379`
416 - ``"info"`` messages can now be customised to hide some fields :ghpull:`13343`
415 - ``"info"`` messages can now be customised to hide some fields :ghpull:`13343`
417 - ``collections.UserList`` now pretty-prints :ghpull:`13320`
416 - ``collections.UserList`` now pretty-prints :ghpull:`13320`
418 - The debugger now has a persistent history, which should make it less
417 - The debugger now has a persistent history, which should make it less
419 annoying to retype commands :ghpull:`13246`
418 annoying to retype commands :ghpull:`13246`
420 - ``!pip`` ``!conda`` ``!cd`` or ``!ls`` are likely doing the wrong thing. We
419 - ``!pip`` ``!conda`` ``!cd`` or ``!ls`` are likely doing the wrong thing. We
421 now warn users if they use one of those commands. :ghpull:`12954`
420 now warn users if they use one of those commands. :ghpull:`12954`
422 - Make ``%precision`` work for ``numpy.float64`` type :ghpull:`12902`
421 - Make ``%precision`` work for ``numpy.float64`` type :ghpull:`12902`
423
422
424 Re-added support for XDG config directories
423 Re-added support for XDG config directories
425 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
424 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
426
425
427 XDG support through the years comes and goes. There is a tension between having
426 XDG support through the years comes and goes. There is a tension between having
428 an identical location for configuration in all platforms versus having simple instructions.
427 an identical location for configuration in all platforms versus having simple instructions.
429 After initial failures a couple of years ago, IPython was modified to automatically migrate XDG
428 After initial failures a couple of years ago, IPython was modified to automatically migrate XDG
430 config files back into ``~/.ipython``. That migration code has now been removed.
429 config files back into ``~/.ipython``. That migration code has now been removed.
431 IPython now checks the XDG locations, so if you _manually_ move your config
430 IPython now checks the XDG locations, so if you _manually_ move your config
432 files to your preferred location, IPython will not move them back.
431 files to your preferred location, IPython will not move them back.
433
432
434
433
435 Preparing for Python 3.10
434 Preparing for Python 3.10
436 -------------------------
435 -------------------------
437
436
438 To prepare for Python 3.10, we have started working on removing reliance and
437 To prepare for Python 3.10, we have started working on removing reliance and
439 any dependency that is not compatible with Python 3.10. This includes migrating our
438 any dependency that is not compatible with Python 3.10. This includes migrating our
440 test suite to pytest and starting to remove nose. This also means that the
439 test suite to pytest and starting to remove nose. This also means that the
441 ``iptest`` command is now gone and all testing is via pytest.
440 ``iptest`` command is now gone and all testing is via pytest.
442
441
443 This was in large part thanks to the NumFOCUS Small Developer grant, which enabled us to
442 This was in large part thanks to the NumFOCUS Small Developer grant, which enabled us to
444 allocate \$4000 to hire `Nikita Kniazev (@Kojoley) <https://github.com/Kojoley>`_,
443 allocate \$4000 to hire `Nikita Kniazev (@Kojoley) <https://github.com/Kojoley>`_,
445 who did a fantastic job at updating our code base, migrating to pytest, pushing
444 who did a fantastic job at updating our code base, migrating to pytest, pushing
446 our coverage, and fixing a large number of bugs. I highly recommend contacting
445 our coverage, and fixing a large number of bugs. I highly recommend contacting
447 them if you need help with C++ and Python projects.
446 them if you need help with C++ and Python projects.
448
447
449 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+>`__
448 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+>`__
450
449
451 Removing support for older Python versions
450 Removing support for older Python versions
452 ------------------------------------------
451 ------------------------------------------
453
452
454
453
455 We are removing support for Python up through 3.7, allowing internal code to use the more
454 We are removing support for Python up through 3.7, allowing internal code to use the more
456 efficient ``pathlib`` and to make better use of type annotations.
455 efficient ``pathlib`` and to make better use of type annotations.
457
456
458 .. image:: ../_images/8.0/pathlib_pathlib_everywhere.jpg
457 .. image:: ../_images/8.0/pathlib_pathlib_everywhere.jpg
459 :alt: "Meme image of Toy Story with Woody and Buzz, with the text 'pathlib, pathlib everywhere'"
458 :alt: "Meme image of Toy Story with Woody and Buzz, with the text 'pathlib, pathlib everywhere'"
460
459
461
460
462 We had about 34 PRs only to update some logic to update some functions from managing strings to
461 We had about 34 PRs only to update some logic to update some functions from managing strings to
463 using Pathlib.
462 using Pathlib.
464
463
465 The completer has also seen significant updates and now makes use of newer Jedi APIs,
464 The completer has also seen significant updates and now makes use of newer Jedi APIs,
466 offering faster and more reliable tab completion.
465 offering faster and more reliable tab completion.
467
466
468 Misc Statistics
467 Misc Statistics
469 ---------------
468 ---------------
470
469
471 Here are some numbers::
470 Here are some numbers::
472
471
473 7.x: 296 files, 12561 blank lines, 20282 comments, 35142 line of code.
472 7.x: 296 files, 12561 blank lines, 20282 comments, 35142 line of code.
474 8.0: 252 files, 12053 blank lines, 19232 comments, 34505 line of code.
473 8.0: 252 files, 12053 blank lines, 19232 comments, 34505 line of code.
475
474
476 $ git diff --stat 7.x...master | tail -1
475 $ git diff --stat 7.x...master | tail -1
477 340 files changed, 13399 insertions(+), 12421 deletions(-)
476 340 files changed, 13399 insertions(+), 12421 deletions(-)
478
477
479 We have commits from 162 authors, who contributed 1916 commits in 23 month, excluding merges (to not bias toward
478 We have commits from 162 authors, who contributed 1916 commits in 23 month, excluding merges (to not bias toward
480 maintainers pushing buttons).::
479 maintainers pushing buttons).::
481
480
482 $ git shortlog -s --no-merges 7.x...master | sort -nr
481 $ git shortlog -s --no-merges 7.x...master | sort -nr
483 535 Matthias Bussonnier
482 535 Matthias Bussonnier
484 86 Nikita Kniazev
483 86 Nikita Kniazev
485 69 Blazej Michalik
484 69 Blazej Michalik
486 49 Samuel Gaist
485 49 Samuel Gaist
487 27 Itamar Turner-Trauring
486 27 Itamar Turner-Trauring
488 18 Spas Kalaydzhisyki
487 18 Spas Kalaydzhisyki
489 17 Thomas Kluyver
488 17 Thomas Kluyver
490 17 Quentin Peter
489 17 Quentin Peter
491 17 James Morris
490 17 James Morris
492 17 Artur Svistunov
491 17 Artur Svistunov
493 15 Bart Skowron
492 15 Bart Skowron
494 14 Alex Hall
493 14 Alex Hall
495 13 rushabh-v
494 13 rushabh-v
496 13 Terry Davis
495 13 Terry Davis
497 13 Benjamin Ragan-Kelley
496 13 Benjamin Ragan-Kelley
498 8 martinRenou
497 8 martinRenou
499 8 farisachugthai
498 8 farisachugthai
500 7 dswij
499 7 dswij
501 7 Gal B
500 7 Gal B
502 7 Corentin Cadiou
501 7 Corentin Cadiou
503 6 yuji96
502 6 yuji96
504 6 Martin Skarzynski
503 6 Martin Skarzynski
505 6 Justin Palmer
504 6 Justin Palmer
506 6 Daniel Goldfarb
505 6 Daniel Goldfarb
507 6 Ben Greiner
506 6 Ben Greiner
508 5 Sammy Al Hashemi
507 5 Sammy Al Hashemi
509 5 Paul Ivanov
508 5 Paul Ivanov
510 5 Inception95
509 5 Inception95
511 5 Eyenpi
510 5 Eyenpi
512 5 Douglas Blank
511 5 Douglas Blank
513 5 Coco Mishra
512 5 Coco Mishra
514 5 Bibo Hao
513 5 Bibo Hao
515 5 AndrΓ© A. Gomes
514 5 AndrΓ© A. Gomes
516 5 Ahmed Fasih
515 5 Ahmed Fasih
517 4 takuya fujiwara
516 4 takuya fujiwara
518 4 palewire
517 4 palewire
519 4 Thomas A Caswell
518 4 Thomas A Caswell
520 4 Talley Lambert
519 4 Talley Lambert
521 4 Scott Sanderson
520 4 Scott Sanderson
522 4 Ram Rachum
521 4 Ram Rachum
523 4 Nick Muoh
522 4 Nick Muoh
524 4 Nathan Goldbaum
523 4 Nathan Goldbaum
525 4 Mithil Poojary
524 4 Mithil Poojary
526 4 Michael T
525 4 Michael T
527 4 Jakub Klus
526 4 Jakub Klus
528 4 Ian Castleden
527 4 Ian Castleden
529 4 Eli Rykoff
528 4 Eli Rykoff
530 4 Ashwin Vishnu
529 4 Ashwin Vishnu
531 3 谭九鼎
530 3 谭九鼎
532 3 sleeping
531 3 sleeping
533 3 Sylvain Corlay
532 3 Sylvain Corlay
534 3 Peter Corke
533 3 Peter Corke
535 3 Paul Bissex
534 3 Paul Bissex
536 3 Matthew Feickert
535 3 Matthew Feickert
537 3 Fernando Perez
536 3 Fernando Perez
538 3 Eric Wieser
537 3 Eric Wieser
539 3 Daniel Mietchen
538 3 Daniel Mietchen
540 3 Aditya Sathe
539 3 Aditya Sathe
541 3 007vedant
540 3 007vedant
542 2 rchiodo
541 2 rchiodo
543 2 nicolaslazo
542 2 nicolaslazo
544 2 luttik
543 2 luttik
545 2 gorogoroumaru
544 2 gorogoroumaru
546 2 foobarbyte
545 2 foobarbyte
547 2 bar-hen
546 2 bar-hen
548 2 Theo Ouzhinski
547 2 Theo Ouzhinski
549 2 Strawkage
548 2 Strawkage
550 2 Samreen Zarroug
549 2 Samreen Zarroug
551 2 Pete Blois
550 2 Pete Blois
552 2 Meysam Azad
551 2 Meysam Azad
553 2 Matthieu Ancellin
552 2 Matthieu Ancellin
554 2 Mark Schmitz
553 2 Mark Schmitz
555 2 Maor Kleinberger
554 2 Maor Kleinberger
556 2 MRCWirtz
555 2 MRCWirtz
557 2 Lumir Balhar
556 2 Lumir Balhar
558 2 Julien Rabinow
557 2 Julien Rabinow
559 2 Juan Luis Cano RodrΓ­guez
558 2 Juan Luis Cano RodrΓ­guez
560 2 Joyce Er
559 2 Joyce Er
561 2 Jakub
560 2 Jakub
562 2 Faris A Chugthai
561 2 Faris A Chugthai
563 2 Ethan Madden
562 2 Ethan Madden
564 2 Dimitri Papadopoulos
563 2 Dimitri Papadopoulos
565 2 Diego Fernandez
564 2 Diego Fernandez
566 2 Daniel Shimon
565 2 Daniel Shimon
567 2 Coco Bennett
566 2 Coco Bennett
568 2 Carlos Cordoba
567 2 Carlos Cordoba
569 2 Boyuan Liu
568 2 Boyuan Liu
570 2 BaoGiang HoangVu
569 2 BaoGiang HoangVu
571 2 Augusto
570 2 Augusto
572 2 Arthur Svistunov
571 2 Arthur Svistunov
573 2 Arthur Moreira
572 2 Arthur Moreira
574 2 Ali Nabipour
573 2 Ali Nabipour
575 2 Adam Hackbarth
574 2 Adam Hackbarth
576 1 richard
575 1 richard
577 1 linar-jether
576 1 linar-jether
578 1 lbennett
577 1 lbennett
579 1 juacrumar
578 1 juacrumar
580 1 gpotter2
579 1 gpotter2
581 1 digitalvirtuoso
580 1 digitalvirtuoso
582 1 dalthviz
581 1 dalthviz
583 1 Yonatan Goldschmidt
582 1 Yonatan Goldschmidt
584 1 Tomasz KΕ‚oczko
583 1 Tomasz KΕ‚oczko
585 1 Tobias Bengfort
584 1 Tobias Bengfort
586 1 Timur Kushukov
585 1 Timur Kushukov
587 1 Thomas
586 1 Thomas
588 1 Snir Broshi
587 1 Snir Broshi
589 1 Shao Yang Hong
588 1 Shao Yang Hong
590 1 Sanjana-03
589 1 Sanjana-03
591 1 Romulo Filho
590 1 Romulo Filho
592 1 Rodolfo Carvalho
591 1 Rodolfo Carvalho
593 1 Richard Shadrach
592 1 Richard Shadrach
594 1 Reilly Tucker Siemens
593 1 Reilly Tucker Siemens
595 1 Rakessh Roshan
594 1 Rakessh Roshan
596 1 Piers Titus van der Torren
595 1 Piers Titus van der Torren
597 1 PhanatosZou
596 1 PhanatosZou
598 1 Pavel Safronov
597 1 Pavel Safronov
599 1 Paulo S. Costa
598 1 Paulo S. Costa
600 1 Paul McCarthy
599 1 Paul McCarthy
601 1 NotWearingPants
600 1 NotWearingPants
602 1 Naelson Douglas
601 1 Naelson Douglas
603 1 Michael Tiemann
602 1 Michael Tiemann
604 1 Matt Wozniski
603 1 Matt Wozniski
605 1 Markus Wageringel
604 1 Markus Wageringel
606 1 Marcus Wirtz
605 1 Marcus Wirtz
607 1 Marcio Mazza
606 1 Marcio Mazza
608 1 LumΓ­r 'Frenzy' Balhar
607 1 LumΓ­r 'Frenzy' Balhar
609 1 Lightyagami1
608 1 Lightyagami1
610 1 Leon Anavi
609 1 Leon Anavi
611 1 LeafyLi
610 1 LeafyLi
612 1 L0uisJ0shua
611 1 L0uisJ0shua
613 1 Kyle Cutler
612 1 Kyle Cutler
614 1 Krzysztof Cybulski
613 1 Krzysztof Cybulski
615 1 Kevin Kirsche
614 1 Kevin Kirsche
616 1 KIU Shueng Chuan
615 1 KIU Shueng Chuan
617 1 Jonathan Slenders
616 1 Jonathan Slenders
618 1 Jay Qi
617 1 Jay Qi
619 1 Jake VanderPlas
618 1 Jake VanderPlas
620 1 Iwan Briquemont
619 1 Iwan Briquemont
621 1 Hussaina Begum Nandyala
620 1 Hussaina Begum Nandyala
622 1 Gordon Ball
621 1 Gordon Ball
623 1 Gabriel Simonetto
622 1 Gabriel Simonetto
624 1 Frank Tobia
623 1 Frank Tobia
625 1 Erik
624 1 Erik
626 1 Elliott Sales de Andrade
625 1 Elliott Sales de Andrade
627 1 Daniel Hahler
626 1 Daniel Hahler
628 1 Dan Green-Leipciger
627 1 Dan Green-Leipciger
629 1 Dan Green
628 1 Dan Green
630 1 Damian Yurzola
629 1 Damian Yurzola
631 1 Coon, Ethan T
630 1 Coon, Ethan T
632 1 Carol Willing
631 1 Carol Willing
633 1 Brian Lee
632 1 Brian Lee
634 1 Brendan Gerrity
633 1 Brendan Gerrity
635 1 Blake Griffin
634 1 Blake Griffin
636 1 Bastian Ebeling
635 1 Bastian Ebeling
637 1 Bartosz Telenczuk
636 1 Bartosz Telenczuk
638 1 Ankitsingh6299
637 1 Ankitsingh6299
639 1 Andrew Port
638 1 Andrew Port
640 1 Andrew J. Hesford
639 1 Andrew J. Hesford
641 1 Albert Zhang
640 1 Albert Zhang
642 1 Adam Johnson
641 1 Adam Johnson
643
642
644 This does not, of course, represent non-code contributions, for which we are also grateful.
643 This does not, of course, represent non-code contributions, for which we are also grateful.
645
644
646
645
647 API Changes using Frappuccino
646 API Changes using Frappuccino
648 -----------------------------
647 -----------------------------
649
648
650 This is an experimental exhaustive API difference using `Frappuccino <https://pypi.org/project/frappuccino/>`_
649 This is an experimental exhaustive API difference using `Frappuccino <https://pypi.org/project/frappuccino/>`_
651
650
652
651
653 The following items are new in IPython 8.0 ::
652 The following items are new in IPython 8.0 ::
654
653
655 + IPython.core.async_helpers.get_asyncio_loop()
654 + IPython.core.async_helpers.get_asyncio_loop()
656 + IPython.core.completer.Dict
655 + IPython.core.completer.Dict
657 + IPython.core.completer.Pattern
656 + IPython.core.completer.Pattern
658 + IPython.core.completer.Sequence
657 + IPython.core.completer.Sequence
659 + IPython.core.completer.__skip_doctest__
658 + IPython.core.completer.__skip_doctest__
660 + IPython.core.debugger.Pdb.precmd(self, line)
659 + IPython.core.debugger.Pdb.precmd(self, line)
661 + IPython.core.debugger.__skip_doctest__
660 + IPython.core.debugger.__skip_doctest__
662 + IPython.core.display.__getattr__(name)
661 + IPython.core.display.__getattr__(name)
663 + IPython.core.display.warn
662 + IPython.core.display.warn
664 + IPython.core.display_functions
663 + IPython.core.display_functions
665 + IPython.core.display_functions.DisplayHandle
664 + IPython.core.display_functions.DisplayHandle
666 + IPython.core.display_functions.DisplayHandle.display(self, obj, **kwargs)
665 + IPython.core.display_functions.DisplayHandle.display(self, obj, **kwargs)
667 + IPython.core.display_functions.DisplayHandle.update(self, obj, **kwargs)
666 + IPython.core.display_functions.DisplayHandle.update(self, obj, **kwargs)
668 + IPython.core.display_functions.__all__
667 + IPython.core.display_functions.__all__
669 + IPython.core.display_functions.__builtins__
668 + IPython.core.display_functions.__builtins__
670 + IPython.core.display_functions.__cached__
669 + IPython.core.display_functions.__cached__
671 + IPython.core.display_functions.__doc__
670 + IPython.core.display_functions.__doc__
672 + IPython.core.display_functions.__file__
671 + IPython.core.display_functions.__file__
673 + IPython.core.display_functions.__loader__
672 + IPython.core.display_functions.__loader__
674 + IPython.core.display_functions.__name__
673 + IPython.core.display_functions.__name__
675 + IPython.core.display_functions.__package__
674 + IPython.core.display_functions.__package__
676 + IPython.core.display_functions.__spec__
675 + IPython.core.display_functions.__spec__
677 + IPython.core.display_functions.b2a_hex
676 + IPython.core.display_functions.b2a_hex
678 + IPython.core.display_functions.clear_output(wait=False)
677 + IPython.core.display_functions.clear_output(wait=False)
679 + IPython.core.display_functions.display(*objs, include='None', exclude='None', metadata='None', transient='None', display_id='None', raw=False, clear=False, **kwargs)
678 + IPython.core.display_functions.display(*objs, include='None', exclude='None', metadata='None', transient='None', display_id='None', raw=False, clear=False, **kwargs)
680 + IPython.core.display_functions.publish_display_data(data, metadata='None', source='<deprecated>', *, transient='None', **kwargs)
679 + IPython.core.display_functions.publish_display_data(data, metadata='None', source='<deprecated>', *, transient='None', **kwargs)
681 + IPython.core.display_functions.update_display(obj, *, display_id, **kwargs)
680 + IPython.core.display_functions.update_display(obj, *, display_id, **kwargs)
682 + IPython.core.extensions.BUILTINS_EXTS
681 + IPython.core.extensions.BUILTINS_EXTS
683 + IPython.core.inputtransformer2.has_sunken_brackets(tokens)
682 + IPython.core.inputtransformer2.has_sunken_brackets(tokens)
684 + IPython.core.interactiveshell.Callable
683 + IPython.core.interactiveshell.Callable
685 + IPython.core.interactiveshell.__annotations__
684 + IPython.core.interactiveshell.__annotations__
686 + IPython.core.ultratb.List
685 + IPython.core.ultratb.List
687 + IPython.core.ultratb.Tuple
686 + IPython.core.ultratb.Tuple
688 + IPython.lib.pretty.CallExpression
687 + IPython.lib.pretty.CallExpression
689 + IPython.lib.pretty.CallExpression.factory(name)
688 + IPython.lib.pretty.CallExpression.factory(name)
690 + IPython.lib.pretty.RawStringLiteral
689 + IPython.lib.pretty.RawStringLiteral
691 + IPython.lib.pretty.RawText
690 + IPython.lib.pretty.RawText
692 + IPython.terminal.debugger.TerminalPdb.do_interact(self, arg)
691 + IPython.terminal.debugger.TerminalPdb.do_interact(self, arg)
693 + IPython.terminal.embed.Set
692 + IPython.terminal.embed.Set
694
693
695 The following items have been removed (or moved to superclass)::
694 The following items have been removed (or moved to superclass)::
696
695
697 - IPython.core.application.BaseIPythonApplication.initialize_subcommand
696 - IPython.core.application.BaseIPythonApplication.initialize_subcommand
698 - IPython.core.completer.Sentinel
697 - IPython.core.completer.Sentinel
699 - IPython.core.completer.skip_doctest
698 - IPython.core.completer.skip_doctest
700 - IPython.core.debugger.Tracer
699 - IPython.core.debugger.Tracer
701 - IPython.core.display.DisplayHandle
700 - IPython.core.display.DisplayHandle
702 - IPython.core.display.DisplayHandle.display
701 - IPython.core.display.DisplayHandle.display
703 - IPython.core.display.DisplayHandle.update
702 - IPython.core.display.DisplayHandle.update
704 - IPython.core.display.b2a_hex
703 - IPython.core.display.b2a_hex
705 - IPython.core.display.clear_output
704 - IPython.core.display.clear_output
706 - IPython.core.display.display
705 - IPython.core.display.display
707 - IPython.core.display.publish_display_data
706 - IPython.core.display.publish_display_data
708 - IPython.core.display.update_display
707 - IPython.core.display.update_display
709 - IPython.core.excolors.Deprec
708 - IPython.core.excolors.Deprec
710 - IPython.core.excolors.ExceptionColors
709 - IPython.core.excolors.ExceptionColors
711 - IPython.core.history.warn
710 - IPython.core.history.warn
712 - IPython.core.hooks.late_startup_hook
711 - IPython.core.hooks.late_startup_hook
713 - IPython.core.hooks.pre_run_code_hook
712 - IPython.core.hooks.pre_run_code_hook
714 - IPython.core.hooks.shutdown_hook
713 - IPython.core.hooks.shutdown_hook
715 - IPython.core.interactiveshell.InteractiveShell.init_deprecation_warnings
714 - IPython.core.interactiveshell.InteractiveShell.init_deprecation_warnings
716 - IPython.core.interactiveshell.InteractiveShell.init_readline
715 - IPython.core.interactiveshell.InteractiveShell.init_readline
717 - IPython.core.interactiveshell.InteractiveShell.write
716 - IPython.core.interactiveshell.InteractiveShell.write
718 - IPython.core.interactiveshell.InteractiveShell.write_err
717 - IPython.core.interactiveshell.InteractiveShell.write_err
719 - IPython.core.interactiveshell.get_default_colors
718 - IPython.core.interactiveshell.get_default_colors
720 - IPython.core.interactiveshell.removed_co_newlocals
719 - IPython.core.interactiveshell.removed_co_newlocals
721 - IPython.core.magics.execution.ExecutionMagics.profile_missing_notice
720 - IPython.core.magics.execution.ExecutionMagics.profile_missing_notice
722 - IPython.core.magics.script.PIPE
721 - IPython.core.magics.script.PIPE
723 - IPython.core.prefilter.PrefilterManager.init_transformers
722 - IPython.core.prefilter.PrefilterManager.init_transformers
724 - IPython.core.release.classifiers
723 - IPython.core.release.classifiers
725 - IPython.core.release.description
724 - IPython.core.release.description
726 - IPython.core.release.keywords
725 - IPython.core.release.keywords
727 - IPython.core.release.long_description
726 - IPython.core.release.long_description
728 - IPython.core.release.name
727 - IPython.core.release.name
729 - IPython.core.release.platforms
728 - IPython.core.release.platforms
730 - IPython.core.release.url
729 - IPython.core.release.url
731 - IPython.core.ultratb.VerboseTB.format_records
730 - IPython.core.ultratb.VerboseTB.format_records
732 - IPython.core.ultratb.find_recursion
731 - IPython.core.ultratb.find_recursion
733 - IPython.core.ultratb.findsource
732 - IPython.core.ultratb.findsource
734 - IPython.core.ultratb.fix_frame_records_filenames
733 - IPython.core.ultratb.fix_frame_records_filenames
735 - IPython.core.ultratb.inspect_error
734 - IPython.core.ultratb.inspect_error
736 - IPython.core.ultratb.is_recursion_error
735 - IPython.core.ultratb.is_recursion_error
737 - IPython.core.ultratb.with_patch_inspect
736 - IPython.core.ultratb.with_patch_inspect
738 - IPython.external.__all__
737 - IPython.external.__all__
739 - IPython.external.__builtins__
738 - IPython.external.__builtins__
740 - IPython.external.__cached__
739 - IPython.external.__cached__
741 - IPython.external.__doc__
740 - IPython.external.__doc__
742 - IPython.external.__file__
741 - IPython.external.__file__
743 - IPython.external.__loader__
742 - IPython.external.__loader__
744 - IPython.external.__name__
743 - IPython.external.__name__
745 - IPython.external.__package__
744 - IPython.external.__package__
746 - IPython.external.__path__
745 - IPython.external.__path__
747 - IPython.external.__spec__
746 - IPython.external.__spec__
748 - IPython.kernel.KernelConnectionInfo
747 - IPython.kernel.KernelConnectionInfo
749 - IPython.kernel.__builtins__
748 - IPython.kernel.__builtins__
750 - IPython.kernel.__cached__
749 - IPython.kernel.__cached__
751 - IPython.kernel.__warningregistry__
750 - IPython.kernel.__warningregistry__
752 - IPython.kernel.pkg
751 - IPython.kernel.pkg
753 - IPython.kernel.protocol_version
752 - IPython.kernel.protocol_version
754 - IPython.kernel.protocol_version_info
753 - IPython.kernel.protocol_version_info
755 - IPython.kernel.src
754 - IPython.kernel.src
756 - IPython.kernel.version_info
755 - IPython.kernel.version_info
757 - IPython.kernel.warn
756 - IPython.kernel.warn
758 - IPython.lib.backgroundjobs
757 - IPython.lib.backgroundjobs
759 - IPython.lib.backgroundjobs.BackgroundJobBase
758 - IPython.lib.backgroundjobs.BackgroundJobBase
760 - IPython.lib.backgroundjobs.BackgroundJobBase.run
759 - IPython.lib.backgroundjobs.BackgroundJobBase.run
761 - IPython.lib.backgroundjobs.BackgroundJobBase.traceback
760 - IPython.lib.backgroundjobs.BackgroundJobBase.traceback
762 - IPython.lib.backgroundjobs.BackgroundJobExpr
761 - IPython.lib.backgroundjobs.BackgroundJobExpr
763 - IPython.lib.backgroundjobs.BackgroundJobExpr.call
762 - IPython.lib.backgroundjobs.BackgroundJobExpr.call
764 - IPython.lib.backgroundjobs.BackgroundJobFunc
763 - IPython.lib.backgroundjobs.BackgroundJobFunc
765 - IPython.lib.backgroundjobs.BackgroundJobFunc.call
764 - IPython.lib.backgroundjobs.BackgroundJobFunc.call
766 - IPython.lib.backgroundjobs.BackgroundJobManager
765 - IPython.lib.backgroundjobs.BackgroundJobManager
767 - IPython.lib.backgroundjobs.BackgroundJobManager.flush
766 - IPython.lib.backgroundjobs.BackgroundJobManager.flush
768 - IPython.lib.backgroundjobs.BackgroundJobManager.new
767 - IPython.lib.backgroundjobs.BackgroundJobManager.new
769 - IPython.lib.backgroundjobs.BackgroundJobManager.remove
768 - IPython.lib.backgroundjobs.BackgroundJobManager.remove
770 - IPython.lib.backgroundjobs.BackgroundJobManager.result
769 - IPython.lib.backgroundjobs.BackgroundJobManager.result
771 - IPython.lib.backgroundjobs.BackgroundJobManager.status
770 - IPython.lib.backgroundjobs.BackgroundJobManager.status
772 - IPython.lib.backgroundjobs.BackgroundJobManager.traceback
771 - IPython.lib.backgroundjobs.BackgroundJobManager.traceback
773 - IPython.lib.backgroundjobs.__builtins__
772 - IPython.lib.backgroundjobs.__builtins__
774 - IPython.lib.backgroundjobs.__cached__
773 - IPython.lib.backgroundjobs.__cached__
775 - IPython.lib.backgroundjobs.__doc__
774 - IPython.lib.backgroundjobs.__doc__
776 - IPython.lib.backgroundjobs.__file__
775 - IPython.lib.backgroundjobs.__file__
777 - IPython.lib.backgroundjobs.__loader__
776 - IPython.lib.backgroundjobs.__loader__
778 - IPython.lib.backgroundjobs.__name__
777 - IPython.lib.backgroundjobs.__name__
779 - IPython.lib.backgroundjobs.__package__
778 - IPython.lib.backgroundjobs.__package__
780 - IPython.lib.backgroundjobs.__spec__
779 - IPython.lib.backgroundjobs.__spec__
781 - IPython.lib.kernel.__builtins__
780 - IPython.lib.kernel.__builtins__
782 - IPython.lib.kernel.__cached__
781 - IPython.lib.kernel.__cached__
783 - IPython.lib.kernel.__doc__
782 - IPython.lib.kernel.__doc__
784 - IPython.lib.kernel.__file__
783 - IPython.lib.kernel.__file__
785 - IPython.lib.kernel.__loader__
784 - IPython.lib.kernel.__loader__
786 - IPython.lib.kernel.__name__
785 - IPython.lib.kernel.__name__
787 - IPython.lib.kernel.__package__
786 - IPython.lib.kernel.__package__
788 - IPython.lib.kernel.__spec__
787 - IPython.lib.kernel.__spec__
789 - IPython.lib.kernel.__warningregistry__
788 - IPython.lib.kernel.__warningregistry__
790 - IPython.paths.fs_encoding
789 - IPython.paths.fs_encoding
791 - IPython.terminal.debugger.DEFAULT_BUFFER
790 - IPython.terminal.debugger.DEFAULT_BUFFER
792 - IPython.terminal.debugger.cursor_in_leading_ws
791 - IPython.terminal.debugger.cursor_in_leading_ws
793 - IPython.terminal.debugger.emacs_insert_mode
792 - IPython.terminal.debugger.emacs_insert_mode
794 - IPython.terminal.debugger.has_selection
793 - IPython.terminal.debugger.has_selection
795 - IPython.terminal.debugger.vi_insert_mode
794 - IPython.terminal.debugger.vi_insert_mode
796 - IPython.terminal.interactiveshell.DISPLAY_BANNER_DEPRECATED
795 - IPython.terminal.interactiveshell.DISPLAY_BANNER_DEPRECATED
797 - IPython.terminal.ipapp.TerminalIPythonApp.parse_command_line
796 - IPython.terminal.ipapp.TerminalIPythonApp.parse_command_line
798 - IPython.testing.test
797 - IPython.testing.test
799 - IPython.utils.contexts.NoOpContext
798 - IPython.utils.contexts.NoOpContext
800 - IPython.utils.io.IOStream
799 - IPython.utils.io.IOStream
801 - IPython.utils.io.IOStream.close
800 - IPython.utils.io.IOStream.close
802 - IPython.utils.io.IOStream.write
801 - IPython.utils.io.IOStream.write
803 - IPython.utils.io.IOStream.writelines
802 - IPython.utils.io.IOStream.writelines
804 - IPython.utils.io.__warningregistry__
803 - IPython.utils.io.__warningregistry__
805 - IPython.utils.io.atomic_writing
804 - IPython.utils.io.atomic_writing
806 - IPython.utils.io.stderr
805 - IPython.utils.io.stderr
807 - IPython.utils.io.stdin
806 - IPython.utils.io.stdin
808 - IPython.utils.io.stdout
807 - IPython.utils.io.stdout
809 - IPython.utils.io.unicode_std_stream
808 - IPython.utils.io.unicode_std_stream
810 - IPython.utils.path.get_ipython_cache_dir
809 - IPython.utils.path.get_ipython_cache_dir
811 - IPython.utils.path.get_ipython_dir
810 - IPython.utils.path.get_ipython_dir
812 - IPython.utils.path.get_ipython_module_path
811 - IPython.utils.path.get_ipython_module_path
813 - IPython.utils.path.get_ipython_package_dir
812 - IPython.utils.path.get_ipython_package_dir
814 - IPython.utils.path.locate_profile
813 - IPython.utils.path.locate_profile
815 - IPython.utils.path.unquote_filename
814 - IPython.utils.path.unquote_filename
816 - IPython.utils.py3compat.PY2
815 - IPython.utils.py3compat.PY2
817 - IPython.utils.py3compat.PY3
816 - IPython.utils.py3compat.PY3
818 - IPython.utils.py3compat.buffer_to_bytes
817 - IPython.utils.py3compat.buffer_to_bytes
819 - IPython.utils.py3compat.builtin_mod_name
818 - IPython.utils.py3compat.builtin_mod_name
820 - IPython.utils.py3compat.cast_bytes
819 - IPython.utils.py3compat.cast_bytes
821 - IPython.utils.py3compat.getcwd
820 - IPython.utils.py3compat.getcwd
822 - IPython.utils.py3compat.isidentifier
821 - IPython.utils.py3compat.isidentifier
823 - IPython.utils.py3compat.u_format
822 - IPython.utils.py3compat.u_format
824
823
825 The following signatures differ between 7.x and 8.0::
824 The following signatures differ between 7.x and 8.0::
826
825
827 - IPython.core.completer.IPCompleter.unicode_name_matches(self, text)
826 - IPython.core.completer.IPCompleter.unicode_name_matches(self, text)
828 + IPython.core.completer.IPCompleter.unicode_name_matches(text)
827 + IPython.core.completer.IPCompleter.unicode_name_matches(text)
829
828
830 - IPython.core.completer.match_dict_keys(keys, prefix, delims)
829 - IPython.core.completer.match_dict_keys(keys, prefix, delims)
831 + IPython.core.completer.match_dict_keys(keys, prefix, delims, extra_prefix='None')
830 + IPython.core.completer.match_dict_keys(keys, prefix, delims, extra_prefix='None')
832
831
833 - IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0)
832 - IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0)
834 + IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0, omit_sections='()')
833 + IPython.core.interactiveshell.InteractiveShell.object_inspect_mime(self, oname, detail_level=0, omit_sections='()')
835
834
836 - IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None', _warn_deprecated=True)
835 - IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None', _warn_deprecated=True)
837 + IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None')
836 + IPython.core.interactiveshell.InteractiveShell.set_hook(self, name, hook, priority=50, str_key='None', re_key='None')
838
837
839 - IPython.core.oinspect.Inspector.info(self, obj, oname='', formatter='None', info='None', detail_level=0)
838 - IPython.core.oinspect.Inspector.info(self, obj, oname='', formatter='None', info='None', detail_level=0)
840 + IPython.core.oinspect.Inspector.info(self, obj, oname='', info='None', detail_level=0)
839 + IPython.core.oinspect.Inspector.info(self, obj, oname='', info='None', detail_level=0)
841
840
842 - IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True)
841 - IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True)
843 + IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True, omit_sections='()')
842 + IPython.core.oinspect.Inspector.pinfo(self, obj, oname='', formatter='None', info='None', detail_level=0, enable_html_pager=True, omit_sections='()')
844
843
845 - IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path='None', overwrite=False)
844 - IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path='None', overwrite=False)
846 + IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path, overwrite=False)
845 + IPython.core.profiledir.ProfileDir.copy_config_file(self, config_file, path, overwrite=False)
847
846
848 - IPython.core.ultratb.VerboseTB.format_record(self, frame, file, lnum, func, lines, index)
847 - IPython.core.ultratb.VerboseTB.format_record(self, frame, file, lnum, func, lines, index)
849 + IPython.core.ultratb.VerboseTB.format_record(self, frame_info)
848 + IPython.core.ultratb.VerboseTB.format_record(self, frame_info)
850
849
851 - IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, display_banner='None', global_ns='None', compile_flags='None')
850 - IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, display_banner='None', global_ns='None', compile_flags='None')
852 + IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, compile_flags='None')
851 + IPython.terminal.embed.InteractiveShellEmbed.mainloop(self, local_ns='None', module='None', stack_depth=0, compile_flags='None')
853
852
854 - IPython.terminal.embed.embed(**kwargs)
853 - IPython.terminal.embed.embed(**kwargs)
855 + IPython.terminal.embed.embed(*, header='', compile_flags='None', **kwargs)
854 + IPython.terminal.embed.embed(*, header='', compile_flags='None', **kwargs)
856
855
857 - IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self, display_banner='<object object at 0xffffff>')
856 - IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self, display_banner='<object object at 0xffffff>')
858 + IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self)
857 + IPython.terminal.interactiveshell.TerminalInteractiveShell.interact(self)
859
858
860 - IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self, display_banner='<object object at 0xffffff>')
859 - IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self, display_banner='<object object at 0xffffff>')
861 + IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self)
860 + IPython.terminal.interactiveshell.TerminalInteractiveShell.mainloop(self)
862
861
863 - IPython.utils.path.get_py_filename(name, force_win32='None')
862 - IPython.utils.path.get_py_filename(name, force_win32='None')
864 + IPython.utils.path.get_py_filename(name)
863 + IPython.utils.path.get_py_filename(name)
865
864
866 The following are new attributes (that might be inherited)::
865 The following are new attributes (that might be inherited)::
867
866
868 + IPython.core.completer.IPCompleter.unicode_names
867 + IPython.core.completer.IPCompleter.unicode_names
869 + IPython.core.debugger.InterruptiblePdb.precmd
868 + IPython.core.debugger.InterruptiblePdb.precmd
870 + IPython.core.debugger.Pdb.precmd
869 + IPython.core.debugger.Pdb.precmd
871 + IPython.core.ultratb.AutoFormattedTB.has_colors
870 + IPython.core.ultratb.AutoFormattedTB.has_colors
872 + IPython.core.ultratb.ColorTB.has_colors
871 + IPython.core.ultratb.ColorTB.has_colors
873 + IPython.core.ultratb.FormattedTB.has_colors
872 + IPython.core.ultratb.FormattedTB.has_colors
874 + IPython.core.ultratb.ListTB.has_colors
873 + IPython.core.ultratb.ListTB.has_colors
875 + IPython.core.ultratb.SyntaxTB.has_colors
874 + IPython.core.ultratb.SyntaxTB.has_colors
876 + IPython.core.ultratb.TBTools.has_colors
875 + IPython.core.ultratb.TBTools.has_colors
877 + IPython.core.ultratb.VerboseTB.has_colors
876 + IPython.core.ultratb.VerboseTB.has_colors
878 + IPython.terminal.debugger.TerminalPdb.do_interact
877 + IPython.terminal.debugger.TerminalPdb.do_interact
879 + IPython.terminal.debugger.TerminalPdb.precmd
878 + IPython.terminal.debugger.TerminalPdb.precmd
880
879
881 The following attribute/methods have been removed::
880 The following attribute/methods have been removed::
882
881
883 - IPython.core.application.BaseIPythonApplication.deprecated_subcommands
882 - IPython.core.application.BaseIPythonApplication.deprecated_subcommands
884 - IPython.core.ultratb.AutoFormattedTB.format_records
883 - IPython.core.ultratb.AutoFormattedTB.format_records
885 - IPython.core.ultratb.ColorTB.format_records
884 - IPython.core.ultratb.ColorTB.format_records
886 - IPython.core.ultratb.FormattedTB.format_records
885 - IPython.core.ultratb.FormattedTB.format_records
887 - IPython.terminal.embed.InteractiveShellEmbed.init_deprecation_warnings
886 - IPython.terminal.embed.InteractiveShellEmbed.init_deprecation_warnings
888 - IPython.terminal.embed.InteractiveShellEmbed.init_readline
887 - IPython.terminal.embed.InteractiveShellEmbed.init_readline
889 - IPython.terminal.embed.InteractiveShellEmbed.write
888 - IPython.terminal.embed.InteractiveShellEmbed.write
890 - IPython.terminal.embed.InteractiveShellEmbed.write_err
889 - IPython.terminal.embed.InteractiveShellEmbed.write_err
891 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_deprecation_warnings
890 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_deprecation_warnings
892 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_readline
891 - IPython.terminal.interactiveshell.TerminalInteractiveShell.init_readline
893 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write
892 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write
894 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write_err
893 - IPython.terminal.interactiveshell.TerminalInteractiveShell.write_err
895 - IPython.terminal.ipapp.LocateIPythonApp.deprecated_subcommands
894 - IPython.terminal.ipapp.LocateIPythonApp.deprecated_subcommands
896 - IPython.terminal.ipapp.LocateIPythonApp.initialize_subcommand
895 - IPython.terminal.ipapp.LocateIPythonApp.initialize_subcommand
897 - IPython.terminal.ipapp.TerminalIPythonApp.deprecated_subcommands
896 - IPython.terminal.ipapp.TerminalIPythonApp.deprecated_subcommands
898 - IPython.terminal.ipapp.TerminalIPythonApp.initialize_subcommand
897 - IPython.terminal.ipapp.TerminalIPythonApp.initialize_subcommand
General Comments 0
You need to be logged in to leave comments. Login now