diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-11-20 21:39:37 +1000 |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-11-20 21:39:37 +1000 |
commit | 86a58dabec40bfb4c112b918cabd7eb21e52183c (patch) | |
tree | d1395dd323a5ccdff9b102340ca7d65aa7b8aaf3 /Python/sysmodule.c | |
parent | 85b9913a629aeca8d6e0f73914256388e1dc990d (diff) | |
download | cpython-86a58dabec40bfb4c112b918cabd7eb21e52183c.tar.gz |
Issue #22869: Split pythonrun into two modules
- interpreter startup and shutdown code moved to a new
pylifecycle.c module
- Py_OptimizeFlag moved into the new module with the other
global flags
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 106fc84fa9..6fb882f015 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1681,7 +1681,7 @@ _PySys_Init(void) } #endif - /* stdin/stdout/stderr are now set by pythonrun.c */ + /* stdin/stdout/stderr are set in pylifecycle.c */ SET_SYS_FROM_STRING_BORROW("__displayhook__", PyDict_GetItemString(sysdict, "displayhook")); |