Staging
v0.5.1
https://github.com/python/cpython
Revision 5802bb231945c04e34acef39b9a937bbe153a8d6 authored by Neal Norwitz on 27 March 2008, 05:03:11 UTC, committed by Neal Norwitz on 27 March 2008, 05:03:11 UTC
1 parent 311d071
Raw File
Tip revision: 5802bb231945c04e34acef39b9a937bbe153a8d6 authored by Neal Norwitz on 27 March 2008, 05:03:11 UTC
Fix compiler warnings
Tip revision: 5802bb2
sigcheck.c

/* Sigcheck is similar to intrcheck() but sets an exception when an
   interrupt occurs.  It can't be in the intrcheck.c file since that
   file (and the whole directory it is in) doesn't know about objects
   or exceptions.  It can't be in errors.c because it can be
   overridden (at link time) by a more powerful version implemented in
   signalmodule.c. */

#include "Python.h"

/* ARGSUSED */
int
PyErr_CheckSignals(void)
{
	if (!PyOS_InterruptOccurred())
		return 0;
	PyErr_SetNone(PyExc_KeyboardInterrupt);
	return -1;
}
back to top