https://github.com/python/cpython
Raw File
Tip revision: f3909b8bc83675b7ab093dbc558e677558d8e718 authored by Pablo Galindo on 04 April 2023, 22:21:41 UTC
Python 3.11.3
Tip revision: f3909b8
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.
 */

#ifdef HAVE_SETJMP_H
#include <setjmp.h>

jmp_buf PyFPE_jbuf;
#endif

int PyFPE_counter;

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