Staging
v0.5.1
https://github.com/python/cpython
Revision 4a22b5dee77b6a3439e4a09362586c390bbdef02 authored by Christian Heimes on 25 November 2007, 09:39:14 UTC, committed by Christian Heimes on 25 November 2007, 09:39:14 UTC
Remove unbound method objects
1 parent 91c7730
Raw File
Tip revision: 4a22b5dee77b6a3439e4a09362586c390bbdef02 authored by Christian Heimes on 25 November 2007, 09:39:14 UTC
Patch from Georg Brandl and me for #1493
Tip revision: 4a22b5d
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