Show More
@@ -8,7 +8,7 b' Using IPython for interactive work' | |||
|
8 | 8 | tutorial.txt |
|
9 | 9 | tips.txt |
|
10 | 10 | reference.txt |
|
11 |
|
|
|
11 | shell.txt | |
|
12 | 12 | qtconsole.txt |
|
13 | 13 | |
|
14 | 14 |
@@ -6,11 +6,12 b' IPython as a system shell' | |||
|
6 | 6 | |
|
7 | 7 | .. warning:: |
|
8 | 8 | |
|
9 |
As of the 0.11 version of IPython, |
|
|
10 | described in this section have been deprecated or are broken. Our plan | |
|
11 | is to continue to support these features, but they need to be updated | |
|
12 | to take advantage of recent API changes. Furthermore, this section | |
|
13 | of the documentation need to be updated to reflect all of these changes. | |
|
9 | As of the 0.11 version of IPython, most of the APIs used by the shell | |
|
10 | profile have been changed, so the profile currently does very little | |
|
11 | beyond changing the IPython prompt. To help restore the shell | |
|
12 | profile to past functionality described here, the old code is found in | |
|
13 | :file:`IPython/deathrow`, which needs to be updated to use the | |
|
14 | APIs in 0.11. | |
|
14 | 15 | |
|
15 | 16 | Overview |
|
16 | 17 | ======== |
@@ -75,9 +75,13 b' def install():' | |||
|
75 | 75 | cmd = '"%s"' % ipybase |
|
76 | 76 | mkshortcut(python, 'IPython', link, cmd, workdir) |
|
77 | 77 | |
|
78 | link = pjoin(ip_start_menu, 'pysh.lnk') | |
|
79 | cmd = '"%s" profile=pysh --init' % ipybase | |
|
80 | mkshortcut(python, 'IPython (command prompt mode)', link, cmd, workdir) | |
|
78 | # Disable pysh Start item until the profile restores functionality | |
|
79 | # Most of this code is in IPython/deathrow, and needs to be updated | |
|
80 | # to 0.11 APIs | |
|
81 | ||
|
82 | # link = pjoin(ip_start_menu, 'pysh.lnk') | |
|
83 | # cmd = '"%s" profile=pysh --init' % ipybase | |
|
84 | # mkshortcut(python, 'IPython (command prompt mode)', link, cmd, workdir) | |
|
81 | 85 | |
|
82 | 86 | link = pjoin(ip_start_menu, 'pylab.lnk') |
|
83 | 87 | cmd = '"%s" profile=pylab --init' % ipybase |
General Comments 0
You need to be logged in to leave comments.
Login now