Staging
v0.5.1
https://github.com/python/cpython
Revision 05222914403c1e2a656c753fbcd20f844af9dd69 authored by Daniel Porteous on 02 May 2019, 08:20:59 UTC, committed by Miss Islington (bot) on 02 May 2019, 08:20:58 UTC


I feel silly even making such a tiny typo fix, but I couldn't help but notice it.
1 parent 5f2b3b0
Raw File
Tip revision: 05222914403c1e2a656c753fbcd20f844af9dd69 authored by Daniel Porteous on 02 May 2019, 08:20:59 UTC
Fix tiny tiny typo in 3.8 what's new (GH-13049)
Tip revision: 0522291
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