remove support for missing ANSI C header files (limits.h, stddef.h, etc).

This commit is contained in:
Skip Montanaro 2004-02-10 16:50:21 +00:00
parent 05eb40128e
commit 7befb9966e
18 changed files with 17 additions and 139 deletions

View file

@ -806,17 +806,6 @@ eval_frame(PyFrameObject *f)
goto on_error;
}
}
#if !defined(HAVE_SIGNAL_H)
/* If we have true signals, the signal handler
will call Py_AddPendingCall() so we don't
have to call PyErr_CheckSignals(). On the
Mac and DOS, alas, we have to call it. */
if (PyErr_CheckSignals()) {
why = WHY_EXCEPTION;
goto on_error;
}
#endif
#ifdef WITH_THREAD
if (interpreter_lock) {
/* Give another thread a chance */