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.
PyLazyImport_Type
_PyTypes_InitTypes
1 parent 51ddfe7 commit f90762aCopy full SHA for f90762a
Objects/object.c
@@ -17,6 +17,7 @@
17
#include "pycore_instruction_sequence.h" // _PyInstructionSequence_Type
18
#include "pycore_interpframe.h" // _PyFrame_Stackbase()
19
#include "pycore_interpolation.h" // _PyInterpolation_Type
20
+#include "pycore_lazyimportobject.h" // PyLazyImport_Type
21
#include "pycore_list.h" // _PyList_DebugMallocStats()
22
#include "pycore_long.h" // _PyLong_GetZero()
23
#include "pycore_memoryobject.h" // _PyManagedBuffer_Type
@@ -2540,6 +2541,7 @@ static PyTypeObject* static_types[] = {
2540
2541
&PyGen_Type,
2542
&PyGetSetDescr_Type,
2543
&PyInstanceMethod_Type,
2544
+ &PyLazyImport_Type,
2545
&PyListIter_Type,
2546
&PyListRevIter_Type,
2547
&PyList_Type,
0 commit comments