##// END OF EJS Templates
Backport PR #10793 on branch 5.x...
Thomas Kluyver -
Show More
@@ -20,7 +20,6 b' development work they do here in a user friendly format.'
20 20 .. toctree::
21 21 :maxdepth: 1
22 22
23 development
24 23 version5
25 24 github-stats-5
26 25 version4
@@ -8,6 +8,36 b' IPython 5.4.1'
8 8 Released a few hours after 5.4, fix a crash when
9 9 ``backports.shutil-get-terminal-size`` is not installed. :ghissue:`10629`
10 10
11 IPython 5.5
12 ===========
13
14 System Wide config
15 ------------------
16
17 - IPython now looks for config files in ``{sys.prefix}/etc/ipython``
18 for environment-specific configuration.
19 - Startup files can be found in ``/etc/ipython/startup`` or ``{sys.prefix}/etc/ipython/startup``
20 in addition to the profile directory, for system-wide or env-specific startup files.
21
22 See :gh:`10644`
23
24 ProgressBar
25 -----------
26
27
28 IPython now has built-in support for progressbars::
29
30 In[1]: from IPython.display import ProgressBar
31 ... : pb = ProgressBar(100)
32 ... : pb
33
34 In[2]: pb.progress = 50
35
36 # progress bar in cell 1 updates.
37
38 See :gh:`10755`
39
40
11 41 IPython 5.4
12 42 ===========
13 43
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now