Staging
v0.5.1
https://github.com/python/cpython
Revision 8c16c5ce1047bb39b421c9f04c38f7b6f6b0256b authored by Nick Coghlan on 02 July 2010, 15:50:14 UTC, committed by Nick Coghlan on 02 July 2010, 15:50:14 UTC
1 parent 0ada39c
Raw File
Tip revision: 8c16c5ce1047bb39b421c9f04c38f7b6f6b0256b authored by Nick Coghlan on 02 July 2010, 15:50:14 UTC
Fix a couple of minor nits in What's New before the release goes out
Tip revision: 8c16c5c
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