Staging
v0.5.1
https://github.com/python/cpython
Revision 322309efe658122cac340adf4995ce40fa0c2e74 authored by Miss Islington (bot) on 16 September 2019, 06:26:57 UTC, committed by GitHub on 16 September 2019, 06:26:57 UTC


(cherry picked from commit 56a45142e70a1ccf3233d43cb60c47255252e89a)


Co-authored-by: Hai Shi <shihai1992@gmail.com>

https://bugs.python.org/issue38168



Automerge-Triggered-By: @zhangyangyu
1 parent 346b7c9
Raw File
Tip revision: 322309efe658122cac340adf4995ce40fa0c2e74 authored by Miss Islington (bot) on 16 September 2019, 06:26:57 UTC
[3.8] bpo-38168: Fix a possbile refleak in setint() of mmapmodule.c (GH-16136) (GH-16174)
Tip revision: 322309e
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