Staging
v0.5.1
https://github.com/python/cpython
Revision 89090789debb9d76892af566277cb71740808945 authored by Miss Islington (bot) on 10 March 2018, 15:49:24 UTC, committed by GitHub on 10 March 2018, 15:49:24 UTC
(cherry picked from commit 496431ffb6c29719332bf2af773349e8dd85e45a)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent f34e0d6
Raw File
Tip revision: 89090789debb9d76892af566277cb71740808945 authored by Miss Islington (bot) on 10 March 2018, 15:49:24 UTC
bpo-26701: Improve documentation for the rounding special methods. (GH-6054)
Tip revision: 8909078
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