Staging
v0.5.1
https://github.com/python/cpython
Revision bda4cc82de06490d982e199e5e49aaed390461ba authored by Miss Islington (bot) on 13 June 2020, 20:55:38 UTC, committed by GitHub on 13 June 2020, 20:55:38 UTC


(cherry picked from commit dea3223740127ac13f984c1d38f127ab6701af44)


Co-authored-by: Zackery Spytz <zspytz@gmail.com>

Automerge-Triggered-By: @brettcannon
1 parent f1534d0
Raw File
Tip revision: bda4cc82de06490d982e199e5e49aaed390461ba authored by Miss Islington (bot) on 13 June 2020, 20:55:38 UTC
[3.9] bpo-37674: Tweak imp module deprecation note in the docs (GH-20480) (GH-20859)
Tip revision: bda4cc8
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