From bf45322b3de1f14448db4992e12dd8408e4e740c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 30 Mar 2000 15:00:33 +0000 Subject: [PATCH] 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. --- Lib/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/user.py b/Lib/user.py index 1374c11f931..ee8ed88d638 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