Staging
v0.5.1
https://github.com/python/cpython
Revision 107b27eee013f0747ba133886f87aacc7f451030 authored by Miss Islington (bot) on 06 December 2018, 21:34:15 UTC, committed by GitHub on 06 December 2018, 21:34:15 UTC
(cherry picked from commit c9566b8c454120e3d0ddb5ab970f262a6cd80077)

Co-authored-by: Andre Delfino <adelfino@gmail.com>
1 parent 49cedc5
Raw File
Tip revision: 107b27eee013f0747ba133886f87aacc7f451030 authored by Miss Islington (bot) on 06 December 2018, 21:34:15 UTC
Add missing period in distutils.dep_util.newer_group doc (GH-11003)
Tip revision: 107b27e
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