Staging
v0.5.1
https://github.com/python/cpython
Revision 98ad985afe452438dcccd19583071008b7afe691 authored by Miss Islington (bot) on 11 November 2017, 15:11:34 UTC, committed by Berker Peksag on 11 November 2017, 15:11:34 UTC
It can be removed after https://github.com/python/peps/commit/c28890fb421c906241da6da718f9eacc5a3109ee
(cherry picked from commit 7c9da3e5ba060463b661da58ec3fe6beedce5566)
1 parent 7abbddd
Raw File
Tip revision: 98ad985afe452438dcccd19583071008b7afe691 authored by Miss Islington (bot) on 11 November 2017, 15:11:34 UTC
Remove redundant 'exc = True' line (GH-4357)
Tip revision: 98ad985
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