We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06beb8b commit eeca436Copy full SHA for eeca436
Include/internal/pycore_floatobject.h
@@ -12,7 +12,6 @@ extern "C" {
12
13
/* runtime lifecycle */
14
15
-extern void _PyFloat_InitState(PyInterpreterState *);
16
extern PyStatus _PyFloat_InitTypes(PyInterpreterState *);
17
extern void _PyFloat_FiniType(PyInterpreterState *);
18
Python/pylifecycle.c
@@ -706,8 +706,6 @@ pycore_init_global_objects(PyInterpreterState *interp)
706
{
707
PyStatus status;
708
709
- _PyFloat_InitState(interp);
710
-
711
status = _PyUnicode_InitGlobalObjects(interp);
712
if (_PyStatus_EXCEPTION(status)) {
713
return status;
0 commit comments