Staging
v0.5.1
https://github.com/python/cpython
Revision 7475aa2c590e33a47f5e79e4079bca0645e93f2f authored by Miss Islington (bot) on 27 August 2020, 00:47:10 UTC, committed by GitHub on 27 August 2020, 00:47:10 UTC
(cherry picked from commit 94ad6c674f7687ef22853cb8d42b440d6b42ddc8)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
1 parent 57b6988
Raw File
Tip revision: 7475aa2c590e33a47f5e79e4079bca0645e93f2f authored by Miss Islington (bot) on 27 August 2020, 00:47:10 UTC
bpo-33660: Fix PosixPath to resolve a relative path on root (GH-21975)
Tip revision: 7475aa2
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