mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Logic for enabling mac-specific signal handling fixed (Jack)
This commit is contained in:
parent
1254d79dfa
commit
df0d00e29b
1 changed files with 1 additions and 1 deletions
|
@ -569,7 +569,7 @@ eval_code2(co, globals, locals,
|
|||
goto on_error;
|
||||
}
|
||||
}
|
||||
#if !defined(HAVE_SIGNAL_H) && !defined(macintosh)
|
||||
#if !defined(HAVE_SIGNAL_H) || defined(macintosh)
|
||||
/* If we have true signals, the signal handler
|
||||
will call Py_AddPendingCall() so we don't
|
||||
have to call sigcheck(). On the Mac and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue