Missed a return from a signal handler -- thanks to /F for pointing

it out!
This commit is contained in:
Tim Peters 2000-07-23 18:33:52 +00:00
parent 115343849c
commit e21107145a
1 changed files with 1 additions and 1 deletions

View File

@ -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