Staging
v0.5.1
https://github.com/python/cpython
Revision f13a06b1a8f49144ed3e238857cf4c322f3ec54f authored by Miss Islington (bot) on 08 March 2019, 01:44:31 UTC, committed by GitHub on 08 March 2019, 01:44:31 UTC
(cherry picked from commit f2320b37d9c85d8ddfc0c6afa81b77cd5f6e5ef2)

Co-authored-by: Benedikt Werner <1benediktwerner@gmail.com>
1 parent 6ba95c3
Raw File
Tip revision: f13a06b1a8f49144ed3e238857cf4c322f3ec54f authored by Miss Islington (bot) on 08 March 2019, 01:44:31 UTC
Fix typo (double 'the') in CODEOWNERS (GH-12227)
Tip revision: f13a06b
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