Staging
v0.5.1
https://github.com/python/cpython
Revision 16e469b249be360094eca7129794e4a15b308301 authored by Georg Brandl on 30 September 2006, 11:17:39 UTC, committed by Georg Brandl on 30 September 2006, 11:17:39 UTC
datetime's strftime function.
 (backport from rev. 52072)
1 parent ee2940d
Raw File
Tip revision: 16e469b249be360094eca7129794e4a15b308301 authored by Georg Brandl on 30 September 2006, 11:17:39 UTC
Bug #1556784: allow format strings longer than 127 characters in
Tip revision: 16e469b
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