Show More
@@ -11,6 +11,7 b' This document describes in-flight development work.' | |||||
11 | `docs/source/whatsnew/pr` folder |
|
11 | `docs/source/whatsnew/pr` folder | |
12 |
|
12 | |||
13 |
|
13 | |||
|
14 | ||||
14 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. |
|
15 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. | |
15 |
|
16 | |||
16 |
|
17 |
@@ -2,6 +2,8 b'' | |||||
2 | 5.x Series |
|
2 | 5.x Series | |
3 | ============ |
|
3 | ============ | |
4 |
|
4 | |||
|
5 | .. _whatsnew540: | |||
|
6 | ||||
5 | IPython 5.4 |
|
7 | IPython 5.4 | |
6 | =========== |
|
8 | =========== | |
7 |
|
9 |
@@ -2,6 +2,59 b'' | |||||
2 | 6.x Series |
|
2 | 6.x Series | |
3 | ============ |
|
3 | ============ | |
4 |
|
4 | |||
|
5 | .. _whatsnew610: | |||
|
6 | ||||
|
7 | IPython 6.1 | |||
|
8 | =========== | |||
|
9 | ||||
|
10 | - Quotes in a filename are always escaped during tab-completion on non-Windows. | |||
|
11 | :ghpull:`10069` | |||
|
12 | ||||
|
13 | - Variables now shadow magics in autocompletion. See :ghissue:`4877` and :ghpull:`10542`. | |||
|
14 | ||||
|
15 | - Added the ability to add parameters to alias_magic. For example :: | |||
|
16 | ||||
|
17 | In [2]: %alias_magic hist history --params "-l 2" --line | |||
|
18 | Created `%hist` as an alias for `%history -l 2`. | |||
|
19 | ||||
|
20 | In [3]: hist | |||
|
21 | %alias_magic hist history --params "-l 30" --line | |||
|
22 | %alias_magic hist history --params "-l 2" --line | |||
|
23 | ||||
|
24 | Previously it was only possible to have an alias attached to a single function, | |||
|
25 | and you would have to pass in the given parameters every time:: | |||
|
26 | ||||
|
27 | In [4]: %alias_magic hist history --line | |||
|
28 | Created `%hist` as an alias for `%history`. | |||
|
29 | ||||
|
30 | In [5]: hist -l 2 | |||
|
31 | hist | |||
|
32 | %alias_magic hist history --line | |||
|
33 | ||||
|
34 | - To suppress log state messages, you can now either use ``%logstart -q``, pass | |||
|
35 | ``--LoggingMagics.quiet=True`` on the command line, or set | |||
|
36 | ``c.LoggingMagics.quiet=True`` in your configuration file. | |||
|
37 | ||||
|
38 | - An additional flag ``--TerminalInteractiveShell.term_title_format`` is | |||
|
39 | introduced to allow the user to control the format of the terminal title. It | |||
|
40 | is specified as a python format string, and currently the only variable it | |||
|
41 | will format is ``{cwd}``. | |||
|
42 | ||||
|
43 | ||||
|
44 | The following changes were also added to IPython 5.4, see :ref:`what's new in IPython 5.4 <whatsnew540>` | |||
|
45 | for more detail description: | |||
|
46 | ||||
|
47 | - ``TerminalInteractiveShell`` is configurable and can be configured to | |||
|
48 | (re)-use the readline interface. | |||
|
49 | ||||
|
50 | - objects can now define a ``_repr_mimebundle_`` | |||
|
51 | ||||
|
52 | - Execution heuristics improve for single line statements | |||
|
53 | - ``display()`` can now return a display id to update display areas. | |||
|
54 | ||||
|
55 | ||||
|
56 | .. _whatsnew600: | |||
|
57 | ||||
5 | IPython 6.0 |
|
58 | IPython 6.0 | |
6 | =========== |
|
59 | =========== | |
7 |
|
60 |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now