Staging
v0.5.1
https://github.com/python/cpython
Revision b484871ba707ae2f9898e22effcd297c19d4c5ea authored by Łukasz Langa on 09 June 2020, 18:52:10 UTC, committed by Łukasz Langa on 09 June 2020, 18:52:10 UTC
1 parent ce5e6f0
Raw File
Tip revision: b484871ba707ae2f9898e22effcd297c19d4c5ea authored by Łukasz Langa on 09 June 2020, 18:52:10 UTC
Python 3.9.0b3
Tip revision: b484871
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