Staging
v0.5.1
https://github.com/python/cpython
Revision 2fc443c469fb15033b6b96acd727e2e7cc147adc authored by Miss Islington (bot) on 23 May 2018, 17:59:17 UTC, committed by GitHub on 23 May 2018, 17:59:17 UTC
(cherry picked from commit 28b9178023a445b1da2694774c265cd4b7a244ec)

Co-authored-by: Yury Selivanov <yury@magic.io>
1 parent 0f9b68a
Raw File
Tip revision: 2fc443c469fb15033b6b96acd727e2e7cc147adc authored by Miss Islington (bot) on 23 May 2018, 17:59:17 UTC
bpo-32436: Document PEP 567 changes to asyncio. (GH-7073)
Tip revision: 2fc443c
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