Staging
v0.8.1
https://github.com/python/cpython
Revision 37126e7bd242bce03f3c4f208d8871edd3febcbe authored by Steve Dower on 04 April 2020, 14:47:40 UTC, committed by GitHub on 04 April 2020, 14:47:40 UTC
1 parent 1533772
Raw File
Tip revision: 37126e7bd242bce03f3c4f208d8871edd3febcbe authored by Steve Dower on 04 April 2020, 14:47:40 UTC
bpo-40164: Update Windows to OpenSSL 1.1.1f (GH-19359)
Tip revision: 37126e7
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