Staging
v0.5.1
https://github.com/python/cpython
Revision 09f1ad854237542315ec86151aa56b143e54d1d2 authored by Guido van Rossum on 05 September 2001, 19:29:56 UTC, committed by Guido van Rossum on 05 September 2001, 19:29:56 UTC
1 parent bb5a465
Raw File
Tip revision: 09f1ad854237542315ec86151aa56b143e54d1d2 authored by Guido van Rossum on 05 September 2001, 19:29:56 UTC
class Listbox: add itemcget, to satisfy SF patch #457713.
Tip revision: 09f1ad8
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
extern DL_IMPORT(void) PyOS_InitInterrupts(void);
DL_IMPORT(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top