Staging
v0.5.1
https://github.com/python/cpython
Revision f1d8e7cf17a010d2657822e06a41b30c9542a8c7 authored by David H on 17 January 2019, 12:16:51 UTC, committed by Victor Stinner on 17 January 2019, 12:16:51 UTC
Added test for weakreferencing a uuid.UUID object.
1 parent 89669ff
Raw File
Tip revision: f1d8e7cf17a010d2657822e06a41b30c9542a8c7 authored by David H on 17 January 2019, 12:16:51 UTC
bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570)
Tip revision: f1d8e7c
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