Staging
v0.8.1
https://github.com/python/cpython
Revision eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC, committed by GitHub on 08 December 2020, 23:18:37 UTC
1 parent fe6e5e7
Raw File
Tip revision: eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC
bpo-41443: Add more attribute checking in test_posix (GH-21688)
Tip revision: eb7594f
pyfpe.c
/* These variables used to be used when Python was built with --with-fpectl,
 * but support for that was dropped in 3.7. We continue to define them,
 * though, because they may be referenced by extensions using the stable ABI.
 */

#include "setjmp.h"

jmp_buf PyFPE_jbuf;
int PyFPE_counter;

double
PyFPE_dummy(void *dummy)
{
    return 1.0;
}
back to top