Staging
v0.5.1
https://github.com/python/cpython
Revision b73dd02ea744288831f71363a7467552c09875ea authored by Victor Stinner on 22 January 2020, 20:11:17 UTC, committed by GitHub on 22 January 2020, 20:11:17 UTC
This reverts commit 56cd3710a1ea3ba872d345ea1bebc86ed08bc8b8.
1 parent beea26b
Raw File
Tip revision: b73dd02ea744288831f71363a7467552c09875ea authored by Victor Stinner on 22 January 2020, 20:11:17 UTC
Revert "bpo-39413: Implement os.unsetenv() on Windows (GH-18104)" (GH-18124)
Tip revision: b73dd02
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