Staging
v0.5.1
https://github.com/python/cpython
Revision a8e6af798e6bfc0d9479a4d16e2bc8cc1a4ad283 authored by Miss Skeleton (bot) on 21 October 2020, 08:46:22 UTC, committed by GitHub on 21 October 2020, 08:46:22 UTC
(cherry picked from commit cb115e36e1aba04b90b0ecac6f043e60064ac65b)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
1 parent 62eb403
Raw File
Tip revision: a8e6af798e6bfc0d9479a4d16e2bc8cc1a4ad283 authored by Miss Skeleton (bot) on 21 October 2020, 08:46:22 UTC
Doc: Fix a typo/error in the docs for cached bytecode (GH-22445)
Tip revision: a8e6af7
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