Staging
v0.8.1
https://github.com/python/cpython
Revision 919491d9bbad97e7b161d9c8ae11f1000bb170b8 authored by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC, committed by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC
1 parent e2f12bb
Raw File
Tip revision: 919491d9bbad97e7b161d9c8ae11f1000bb170b8 authored by Andrew M. Kuchling on 19 October 2004, 19:34:07 UTC
[Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from Stefan Heimann
Tip revision: 919491d
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