Staging
v0.5.1
https://github.com/python/cpython
Revision ac5602746ed39ca6591e98e062e587121ac71371 authored by Ivan Levkivskyi on 23 March 2018, 21:44:54 UTC, committed by GitHub on 23 March 2018, 21:44:54 UTC
1 parent 45738ed
Raw File
Tip revision: ac5602746ed39ca6591e98e062e587121ac71371 authored by Ivan Levkivskyi on 23 March 2018, 21:44:54 UTC
bpo-33061: Add missing 'NoReturn' to __all__ in typing.py (GH-6127) (#6162)
Tip revision: ac56027
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