diff options
author | Christian Heimes <christian@cheimes.de> | 2008-05-06 22:41:46 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-05-06 22:41:46 (GMT) |
commit | af748c3ab8f4274a01630bc5dd95ede7db5f115b (patch) | |
tree | e37e8b4349d0d92d5e4ad6e50cf611c454ec6028 /Include | |
parent | 323c40d48c4c1661a18336af16c59bc279fda571 (diff) | |
download | cpython-af748c3ab8f4274a01630bc5dd95ede7db5f115b.zip cpython-af748c3ab8f4274a01630bc5dd95ede7db5f115b.tar.gz cpython-af748c3ab8f4274a01630bc5dd95ede7db5f115b.tar.bz2 |
Implemented PEP 370
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pydebug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pydebug.h b/Include/pydebug.h index 1174f0c..0e7937d 100644 --- a/Include/pydebug.h +++ b/Include/pydebug.h @@ -19,6 +19,7 @@ PyAPI_DATA(int) Py_UnicodeFlag; PyAPI_DATA(int) Py_IgnoreEnvironmentFlag; PyAPI_DATA(int) Py_DivisionWarningFlag; PyAPI_DATA(int) Py_DontWriteBytecodeFlag; +PyAPI_DATA(int) Py_NoUserSiteDirectory; /* _XXX Py_QnewFlag should go away in 3.0. It's true iff -Qnew is passed, on the command line, and is used in 2.2 by ceval.c to make all "/" divisions true divisions (which they will be in 3.0). */ |