Staging
v0.8.1
Revision 786a4e1cef3eda8f434613d3801a5c7565fb5cd8 authored by Miss Islington (bot) on 17 August 2019, 21:11:28 UTC, committed by GitHub on 17 August 2019, 21:11:28 UTC
(cherry picked from commit 24fe46081be3d1c01b3d21cb39bc3492ab4485a3)

Co-authored-by: shireenrao <shireenrao@gmail.com>
1 parent 7309cca
Raw File
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