Staging
v0.5.1
https://github.com/python/cpython
Revision 3b36642924a51e6bceb7033916c3049764817166 authored by Miss Islington (bot) on 08 September 2018, 20:44:20 UTC, committed by GitHub on 08 September 2018, 20:44:20 UTC

This caused installation errors in some cases on Windows.
Patch by Julien Malard.
(cherry picked from commit 0afada163c7ef25c3a9d46ed445481fb69f2ecaf)

Co-authored-by: Julien Malard <julien.malard@mail.mcgill.ca>
1 parent eb6ab73
Raw File
Tip revision: 3b36642924a51e6bceb7033916c3049764817166 authored by Miss Islington (bot) on 08 September 2018, 20:44:20 UTC
bpo-34421 avoid unicode error in distutils logging (GH-8799)
Tip revision: 3b36642
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