summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-03-11 06:12:29 (GMT)
committerGitHub <noreply@github.com>2017-03-11 06:12:29 (GMT)
commitce222c87706b1062f7fc03867d1867aa4848dd7b (patch)
treec01f84152ac1842011db6dc5a1ebc35fcce0edd8 /Python
parent518d8fcb89896dd30fbf11c667ee4e6b509e4dd9 (diff)
downloadcpython-ce222c87706b1062f7fc03867d1867aa4848dd7b.zip
cpython-ce222c87706b1062f7fc03867d1867aa4848dd7b.tar.gz
cpython-ce222c87706b1062f7fc03867d1867aa4848dd7b.tar.bz2
bpo-29770: remove outdated PYO related info (GH-590) (GH-613)
Diffstat (limited to 'Python')
-rw-r--r--Python/pylifecycle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
index ce52990..87dadc1 100644
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -85,7 +85,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 */