Staging
v0.5.1
https://github.com/python/cpython
Revision 29752e24775fb918853384905c3fda11519ffd40 authored by Fred Drake on 12 March 2002, 19:51:59 UTC, committed by Fred Drake on 12 March 2002, 19:51:59 UTC
1 parent 9027116
Raw File
Tip revision: 29752e24775fb918853384905c3fda11519ffd40 authored by Fred Drake on 12 March 2002, 19:51:59 UTC
"level" keyword argument in example should be "stacklevel".
Tip revision: 29752e2
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
extern DL_IMPORT(void) PyOS_InitInterrupts(void);
DL_IMPORT(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top