Kaydet (Commit) 18452a4b authored tarafından Jack Jansen's avatar Jack Jansen

MacPython-OS9 has its own copy of the interrupt handling code. Added PyErr_SetInterrupt() here too.

üst 1fb83c15
......@@ -283,6 +283,12 @@ PyOS_CheckStack()
#endif /* USE_STACKCHECK */
#if !TARGET_API_MAC_OSX
void
PyErr_SetInterrupt(void)
{
interrupted = 1;
}
/* The catcher routine (which may not be used for all compilers) */
static RETSIGTYPE
intcatcher(sig)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment