diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pythonrun.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 0ca1f42..324bc89 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1357,6 +1357,9 @@ initsigs(void) #ifdef SIGXFZ signal(SIGXFZ, SIG_IGN); #endif +#ifdef SIGXFSZ + signal(SIGXFSZ, SIG_IGN); +#endif #endif /* HAVE_SIGNAL_H */ PyOS_InitInterrupts(); /* May imply initsignal() */ } |