diff options
author | Guido van Rossum <guido@python.org> | 2000-03-30 15:00:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-30 15:00:33 (GMT) |
commit | bf45322b3de1f14448db4992e12dd8408e4e740c (patch) | |
tree | e9d9a23a4eb5c79dae6d6e925d92c88681ae3aa1 /Lib/user.py | |
parent | bdcc96c9e3eda9030a98681eb0de42bdcab50d6d (diff) | |
download | cpython-bf45322b3de1f14448db4992e12dd8408e4e740c.zip cpython-bf45322b3de1f14448db4992e12dd8408e4e740c.tar.gz cpython-bf45322b3de1f14448db4992e12dd8408e4e740c.tar.bz2 |
Lawrence Kesteloot noted: Lib/user.py has a comment that says that the
script pointed to by PYTHONPATH will be executed on startup. That
should say PYTHONSTARTUP.
Diffstat (limited to 'Lib/user.py')
-rw-r--r-- | Lib/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/user.py b/Lib/user.py index 1374c11..ee8ed88 100644 --- a/Lib/user.py +++ b/Lib/user.py @@ -2,7 +2,7 @@ As a policy, Python doesn't run user-specified code on startup of Python programs (interactive sessions execute the script specified in -the PYTHONPATH environment variable if it exists). +the PYTHONSTARTUP environment variable if it exists). However, some programs or sites may find it convenient to allow users to have a standard customization file, which gets run when a program |