summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-05-06 22:41:46 +0000
committerChristian Heimes <christian@cheimes.de>2008-05-06 22:41:46 +0000
commitaf748c3ab8f4274a01630bc5dd95ede7db5f115b (patch)
treee37e8b4349d0d92d5e4ad6e50cf611c454ec6028 /Python/pythonrun.c
parent323c40d48c4c1661a18336af16c59bc279fda571 (diff)
downloadcpython-git-af748c3ab8f4274a01630bc5dd95ede7db5f115b.tar.gz
Implemented PEP 370
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index a9b7f81ff7..e1483aafa3 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -82,6 +82,7 @@ int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */
on the command line, and is used in 2.2 by ceval.c to make all "/" divisions
true divisions (which they will be in 2.3). */
int _Py_QnewFlag = 0;
+int Py_NoUserSiteDirectory = 0; /* for -s and site.py */
/* PyModule_GetWarningsModule is no longer necessary as of 2.6
since _warnings is builtin. This API should not be used. */