Staging
v0.5.1
https://github.com/python/cpython
Revision 9535aff9421f0a5639f6e4c4bb0f07a743ea8dba authored by Andrew Svetlov on 04 June 2019, 00:09:19 UTC, committed by Miss Islington (bot) on 04 June 2019, 00:09:19 UTC
1 parent eddef86
Raw File
Tip revision: 9535aff9421f0a5639f6e4c4bb0f07a743ea8dba authored by Andrew Svetlov on 04 June 2019, 00:09:19 UTC
Revert "bpo-35621: Support running subprocesses in asyncio when loop is executed in non-main thread (#13630)" (GH-13793)
Tip revision: 9535aff
pyfpe.h
#ifndef Py_PYFPE_H
#define Py_PYFPE_H

/* These macros used to do something when Python was built with --with-fpectl,
 * but support for that was dropped in 3.7. We continue to define them though,
 * to avoid breaking API users.
 */

#define PyFPE_START_PROTECT(err_string, leave_stmt)
#define PyFPE_END_PROTECT(v)

#endif /* !Py_PYFPE_H */
back to top