Staging
v0.5.1
https://github.com/python/cpython
Revision 346523bec8980b20088508576711e2940359fa6b authored by Martin v. Löwis on 26 July 2004, 12:45:59 UTC, committed by Martin v. Löwis on 26 July 2004, 12:45:59 UTC
1 parent 87cc433
Raw File
Tip revision: 346523bec8980b20088508576711e2940359fa6b authored by Martin v. Löwis on 26 July 2004, 12:45:59 UTC
Patch #962487: Don't crash for empty locale names.
Tip revision: 346523b
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