diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-03-11 06:07:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-11 06:07:30 (GMT) |
commit | 16416c22f9b8d9e067506d3a98f661756c80389c (patch) | |
tree | f8fe29c4fd16a8ae4b12cf3543f0de3b146a608a /Python | |
parent | 701f13ab930b62a634579951dc610f737f461135 (diff) | |
download | cpython-16416c22f9b8d9e067506d3a98f661756c80389c.zip cpython-16416c22f9b8d9e067506d3a98f661756c80389c.tar.gz cpython-16416c22f9b8d9e067506d3a98f661756c80389c.tar.bz2 |
bpo-29770: remove outdated PYO related info (GH-590) (GH-612)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pylifecycle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index a4f7f82..af96d6d 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -88,7 +88,7 @@ int Py_BytesWarningFlag; /* Warn on str(bytes) and str(buffer) */ int Py_UseClassExceptionsFlag = 1; /* Needed by bltinmodule.c: deprecated */ int Py_FrozenFlag; /* Needed by getpath.c */ int Py_IgnoreEnvironmentFlag; /* e.g. PYTHONPATH, PYTHONHOME */ -int Py_DontWriteBytecodeFlag; /* Suppress writing bytecode files (*.py[co]) */ +int Py_DontWriteBytecodeFlag; /* Suppress writing bytecode files (*.pyc) */ int Py_NoUserSiteDirectory = 0; /* for -s and site.py */ int Py_UnbufferedStdioFlag = 0; /* Unbuffered binary std{in,out,err} */ int Py_HashRandomizationFlag = 0; /* for -R and PYTHONHASHSEED */ |