Staging
v0.8.1
https://github.com/python/cpython
Revision 070d3d928d20ccb4790dd077f3794af3c2932e5c authored by Miss Islington (bot) on 04 July 2019, 01:27:40 UTC, committed by Barry Warsaw on 04 July 2019, 01:27:40 UTC
* bpo-37459: importlib docs improperly reference get_resource_loader()
(cherry picked from commit b607d992e76e485f20be3bfd6b311525123f936b)

Co-authored-by: aldwinaldwin <aldwinaldwin@users.noreply.github.com>
1 parent 1099e34
Raw File
Tip revision: 070d3d928d20ccb4790dd077f3794af3c2932e5c authored by Miss Islington (bot) on 04 July 2019, 01:27:40 UTC
bpo-37459: importlib docs improperly reference get_resource_loader() (GH-14568) (GH-14580)
Tip revision: 070d3d9
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