[Python-checkins] r80945 - python/branches/siginterrupt-reset-issue8354/Modules/signalmodule.c

jean-paul.calderone python-checkins at python.org
Sat May 8 00:46:41 CEST 2010


Author: jean-paul.calderone
Date: Sat May  8 00:46:41 2010
New Revision: 80945

Log:
Reference the issue number for this change.

Modified:
   python/branches/siginterrupt-reset-issue8354/Modules/signalmodule.c

Modified: python/branches/siginterrupt-reset-issue8354/Modules/signalmodule.c
==============================================================================
--- python/branches/siginterrupt-reset-issue8354/Modules/signalmodule.c	(original)
+++ python/branches/siginterrupt-reset-issue8354/Modules/signalmodule.c	Sat May  8 00:46:41 2010
@@ -201,7 +201,7 @@
 #ifndef HAVE_SIGACTION
 	/* If the handler was not set up with sigaction, reinstall it.  See
 	 * Python/pythonrun.c for the implementation of PyOS_setsig which
-	 * makes this true.  */
+	 * makes this true.  See also issue8354. */
 	PyOS_setsig(sig_num, signal_handler);
 #endif
 }


More information about the Python-checkins mailing list