Staging
v0.5.1
https://github.com/python/cpython
Revision 3e0144a6c95433f347bb7e44a98c84deae8853ff authored by Miss Islington (bot) on 07 January 2019, 07:25:06 UTC, committed by Benjamin Peterson on 07 January 2019, 07:25:06 UTC
(cherry picked from commit d466c43e55cd32af84e353f0e9a48b09b7534f61)

Co-authored-by: Mickaƫl Schoentgen <contact@tiger-222.fr>
1 parent c234061
Raw File
Tip revision: 3e0144a6c95433f347bb7e44a98c84deae8853ff authored by Miss Islington (bot) on 07 January 2019, 07:25:06 UTC
closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11413)
Tip revision: 3e0144a
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);

#ifndef Py_LIMITED_API
PyAPI_FUNC(int) _PyOS_IsMainThread(void);

#ifdef MS_WINDOWS
/* windows.h is not included by Python.h so use void* instead of HANDLE */
PyAPI_FUNC(void*) _PyOS_SigintEvent(void);
#endif
#endif /* !Py_LIMITED_API */

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