Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: d1b1b8c8827212252f69941562e7989388990a5a authored by Gustavo Niemeyer on 06 September 2006, 22:44:51 UTC
Fixed bug #1531862: Do not close standard file descriptors in subprocess.
Tip revision: d1b1b8c
pyfpe.h
#ifndef Py_PYFPE_H
#define Py_PYFPE_H
/* Header excluded from the stable API */
#ifndef Py_LIMITED_API

/* 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 /* !defined(Py_LIMITED_API) */
#endif /* !Py_PYFPE_H */
back to top