Staging
v0.5.1
https://github.com/python/cpython
Revision 0b8f738eb3ee0110461e7da28c0b6b452f91999d authored by Miss Islington (bot) on 12 February 2020, 03:52:46 UTC, committed by GitHub on 12 February 2020, 03:52:46 UTC
(cherry picked from commit 95905ce0f41fd42eb1ef60ddb83f057401c3d52f)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
1 parent ed4d263
Raw File
Tip revision: 0b8f738eb3ee0110461e7da28c0b6b452f91999d authored by Miss Islington (bot) on 12 February 2020, 03:52:46 UTC
bpo-39605: Remove a cast that causes a warning. (GH-18473)
Tip revision: 0b8f738
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