Staging
v0.5.1
https://github.com/python/cpython
Revision 6348364ba5a76c66bd8a8e5466d7f9db435b88e3 authored by Miss Islington (bot) on 02 July 2019, 05:29:05 UTC, committed by Ned Deily on 02 July 2019, 07:03:00 UTC
(cherry picked from commit 2cd07920bb7d2d319999394092190f37935dc421)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
1 parent 329a1d8
Raw File
Tip revision: 6348364ba5a76c66bd8a8e5466d7f9db435b88e3 authored by Miss Islington (bot) on 02 July 2019, 05:29:05 UTC
Put pyexpatns.h include back. bpo-37437 (GH-14539)
Tip revision: 6348364
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