Changeset 391 for python/trunk/Doc/tutorial/interactive.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/tutorial/interactive.rst
r2 r391 124 124 # 125 125 # Store the file in ~/.pystartup, and set an environment variable to point 126 # to it: "export PYTHONSTARTUP=/home/user/.pystartup" in bash. 127 # 128 # Note that PYTHONSTARTUP does *not* expand "~", so you have to put in the 129 # full path to your home directory. 126 # to it: "export PYTHONSTARTUP=~/.pystartup" in bash. 130 127 131 128 import atexit … … 160 157 161 158 One alternative enhanced interactive interpreter that has been around for quite 162 some time is `IPython`_, which features tab completion, object exploration and159 some time is IPython_, which features tab completion, object exploration and 163 160 advanced history management. It can also be thoroughly customized and embedded 164 161 into other applications. Another similar enhanced interactive environment is 165 `bpython`_.162 bpython_. 166 163 167 164 … … 170 167 .. [#] Python will execute the contents of a file identified by the 171 168 :envvar:`PYTHONSTARTUP` environment variable when you start an interactive 172 interpreter. 169 interpreter. To customize Python even for non-interactive mode, see 170 :ref:`tut-customize`. 173 171 174 172
Note:
See TracChangeset
for help on using the changeset viewer.