Staging
v0.5.1
https://github.com/python/cpython
Revision 7372a07fd0eb8e32fe9d03ee5a56ecc14788dfb0 authored by R. David Murray on 26 January 2011, 21:21:32 UTC, committed by R. David Murray on 26 January 2011, 21:21:32 UTC
Bug discovery and initial patch by Victor Stinner.
1 parent a63a312
Raw File
Tip revision: 7372a07fd0eb8e32fe9d03ee5a56ecc14788dfb0 authored by R. David Murray on 26 January 2011, 21:21:32 UTC
#11019: Make BytesGenerator handle Message with None body.
Tip revision: 7372a07
intrcheck.h

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

PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
PyAPI_FUNC(void) PyOS_AfterFork(void);

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