Staging
v0.5.1
Revision e349e83826e0dd9fd7b0262d33700f1f92b97c73 authored by Miss Islington (bot) on 24 February 2020, 11:44:40 UTC, committed by GitHub on 24 February 2020, 11:44:40 UTC
(cherry picked from commit b942ba03b8530f26240d4e36567d2ff42d701420)

Authored-by: Stefan Krah <skrah@bytereef.org>
1 parent 3dc6961
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