Staging
v0.8.1
https://github.com/python/cpython
Revision 9bdc40ee3e0d886fb62b5334e8a88c1fe9460ba0 authored by Pablo Galindo on 30 November 2020, 19:42:38 UTC, committed by GitHub on 30 November 2020, 19:42:38 UTC
1 parent bcc9579
Raw File
Tip revision: 9bdc40ee3e0d886fb62b5334e8a88c1fe9460ba0 authored by Pablo Galindo on 30 November 2020, 19:42:38 UTC
Refactor the grammar to match the language specification docs (GH-23574)
Tip revision: 9bdc40e
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