summaryrefslogtreecommitdiffstats
path: root/Modules/signalmodule.c
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2014-11-20 11:39:37 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2014-11-20 11:39:37 (GMT)
commitd600951748d7a19cdb3e58a376c51ed804b630e6 (patch)
treec28038ac0a6f2dbab55ceee1217ab8efb61cd64d /Modules/signalmodule.c
parent66fb349d6ca325f54f2f89986146ddb8f3bcbef4 (diff)
downloadcpython-d600951748d7a19cdb3e58a376c51ed804b630e6.zip
cpython-d600951748d7a19cdb3e58a376c51ed804b630e6.tar.gz
cpython-d600951748d7a19cdb3e58a376c51ed804b630e6.tar.bz2
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 'Modules/signalmodule.c')
-rw-r--r--Modules/signalmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index 38c5d21..eabe2f0 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -304,7 +304,7 @@ signal_handler(int sig_num)
if (sig_num != SIGCHLD)
#endif
/* If the handler was not set up with sigaction, reinstall it. See
- * Python/pythonrun.c for the implementation of PyOS_setsig which
+ * Python/pylifecycle.c for the implementation of PyOS_setsig which
* makes this true. See also issue8354. */
PyOS_setsig(sig_num, signal_handler);
#endif