Staging
v0.8.1
Revision 04232de22951037bed292ad910a3179f0bc26dfb authored by Miss Islington (bot) on 01 December 2020, 09:51:12 UTC, committed by GitHub on 01 December 2020, 09:51:12 UTC
(cherry picked from commit 80a429eae95c15c2c2a6753376f2697c90c2b6b9)

Co-authored-by: Andre Delfino <adelfino@gmail.com>
1 parent 1cc5c94
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