Skip to content

Commit f90762a

Browse files
committed
Initialize PyLazyImport_Type in _PyTypes_InitTypes
1 parent 51ddfe7 commit f90762a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Objects/object.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "pycore_instruction_sequence.h" // _PyInstructionSequence_Type
1818
#include "pycore_interpframe.h" // _PyFrame_Stackbase()
1919
#include "pycore_interpolation.h" // _PyInterpolation_Type
20+
#include "pycore_lazyimportobject.h" // PyLazyImport_Type
2021
#include "pycore_list.h" // _PyList_DebugMallocStats()
2122
#include "pycore_long.h" // _PyLong_GetZero()
2223
#include "pycore_memoryobject.h" // _PyManagedBuffer_Type
@@ -2540,6 +2541,7 @@ static PyTypeObject* static_types[] = {
25402541
&PyGen_Type,
25412542
&PyGetSetDescr_Type,
25422543
&PyInstanceMethod_Type,
2544+
&PyLazyImport_Type,
25432545
&PyListIter_Type,
25442546
&PyListRevIter_Type,
25452547
&PyList_Type,

0 commit comments

Comments
 (0)