Staging
v0.8.1
https://github.com/python/cpython
Revision f7b494c4d473c99ade2c8ab4e63005552f168f2b authored by Andre Delfino on 06 May 2019, 16:01:17 UTC, committed by Dino Viehland on 06 May 2019, 16:01:17 UTC
1 parent cec0184
Raw File
Tip revision: f7b494c4d473c99ade2c8ab4e63005552f168f2b authored by Andre Delfino on 06 May 2019, 16:01:17 UTC
Update wsgiref.rst (#10488)
Tip revision: f7b494c
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