Staging
v0.5.1
https://github.com/python/cpython
Revision 656ffdb4de47e462eb4c94377a930511c245fd7b authored by Serhiy Storchaka on 21 April 2015, 18:17:33 UTC, committed by Serhiy Storchaka on 21 April 2015, 18:17:33 UTC
1 parent a8e6575
Raw File
Tip revision: 656ffdb4de47e462eb4c94377a930511c245fd7b authored by Serhiy Storchaka on 21 April 2015, 18:17:33 UTC
Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than 8.5.8
Tip revision: 656ffdb
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