Staging
v0.5.1
https://github.com/python/cpython
Revision 22b7616f26694ac707fd53ece500febfad665426 authored by Terry Jan Reedy on 23 September 2020, 15:17:26 UTC, committed by GitHub on 23 September 2020, 15:17:26 UTC
1 parent 7af072c
Raw File
Tip revision: 22b7616f26694ac707fd53ece500febfad665426 authored by Terry Jan Reedy on 23 September 2020, 15:17:26 UTC
bpo-41844: Add IDLE section to What's New 3.9 (GN-22382)
Tip revision: 22b7616
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