Staging
v0.5.1
Revision 2a3b876b0286b22a9058510d9e51dc4d60eeb89a authored by Miss Islington (bot) on 05 May 2020, 20:00:57 UTC, committed by GitHub on 05 May 2020, 20:00:57 UTC

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
(cherry picked from commit c21c51235aa8061da6b0593d6f857f42fd92fd8b)

Co-authored-by: Curtis Bucher <cpbucher5@gmail.com>
1 parent a6a116c
Raw File
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