Staging
v0.5.1
https://github.com/python/cpython
Revision 5610c7e34b00a58f9d063df1113d440a3512e1b9 authored by Mark Hammond on 03 December 2003, 01:21:01 UTC, committed by Mark Hammond on 03 December 2003, 01:21:01 UTC
1 parent 441c214
Raw File
Tip revision: 5610c7e34b00a58f9d063df1113d440a3512e1b9 authored by Mark Hammond on 03 December 2003, 01:21:01 UTC
Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenames
Tip revision: 5610c7e
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