Staging
v0.5.1
https://github.com/python/cpython
Revision aa21297457ef0e5647602e19a89c4b797183c16e authored by R David Murray on 07 February 2014, 15:44:16 UTC, committed by R David Murray on 07 February 2014, 15:44:16 UTC
In 3.5 I will fix this right by adding a message_factory attribute
to the policy.
1 parent 11c5afd
Raw File
Tip revision: aa21297457ef0e5647602e19a89c4b797183c16e authored by R David Murray on 07 February 2014, 15:44:16 UTC
#20476: use EmailMessage as factory if non-compat32 policy is used.
Tip revision: aa21297
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);
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

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