diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-07-23 18:33:52 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-07-23 18:33:52 (GMT) |
commit | e21107145aed5b9bfeeb2f2d5f76944288c1dc07 (patch) | |
tree | 0ff16d003a04496df4bedb25e4887e6e372dafaf /Modules/signalmodule.c | |
parent | 115343849c69d56cd147b8cdc9fe14e068504c60 (diff) | |
download | cpython-e21107145aed5b9bfeeb2f2d5f76944288c1dc07.zip cpython-e21107145aed5b9bfeeb2f2d5f76944288c1dc07.tar.gz cpython-e21107145aed5b9bfeeb2f2d5f76944288c1dc07.tar.bz2 |
Missed a return from a signal handler -- thanks to /F for pointing
it out!
Diffstat (limited to 'Modules/signalmodule.c')
-rw-r--r-- | Modules/signalmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 6fe516a..fb525f8 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -136,7 +136,7 @@ signal_handler(int sig_num) reset until explicit re-instated. Don't clear the 'func' field as it is our pointer to the Python handler... */ - return; + Py_RETURN_FROM_SIGNAL_HANDLER(0); } #endif #ifdef HAVE_SIGINTERRUPT |