Staging
v0.8.1
https://github.com/python/cpython
Revision dfa645a65ec0788d98851130a217e029d1cc4e9b authored by Łukasz Langa on 13 July 2020, 12:11:53 UTC, committed by Łukasz Langa on 13 July 2020, 12:11:53 UTC
1 parent c77f71f
Raw File
Tip revision: dfa645a65ec0788d98851130a217e029d1cc4e9b authored by Łukasz Langa on 13 July 2020, 12:11:53 UTC
Python 3.8.4
Tip revision: dfa645a
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