diff options
author | Guido van Rossum <guido@python.org> | 1992-09-08 09:20:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-09-08 09:20:13 (GMT) |
commit | 7b3c8a1422be4e2d7bc5e59779071432ef57c1cb (patch) | |
tree | 7bcbe3cce06e2ff97704db5255bce8ee5ddd7e97 /Doc/tut | |
parent | aee087946dbbcda815e8d337fa0b051b814a04fc (diff) | |
download | cpython-7b3c8a1422be4e2d7bc5e59779071432ef57c1cb.zip cpython-7b3c8a1422be4e2d7bc5e59779071432ef57c1cb.tar.gz cpython-7b3c8a1422be4e2d7bc5e59779071432ef57c1cb.tar.bz2 |
Added hint about changing the prompt in $PYTHONSTARTUP
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index f86fc39..84b5333 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -302,6 +302,8 @@ explicit source of commands (which otherwise behaves like an interactive session). It is executed in the same name space where interactive commands are executed, so that objects that it defines or imports can be used without qualification in the interactive session. +You can also change the prompts {\tt sys.ps1} and {\tt sys.ps2} in +this file. If you want to read an additional start-up file from the current directory, you can program this in the global start-up file, e.g. |