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.
2 parents 6b571e0 + db87c99 commit 3bd7900Copy full SHA for 3bd7900
1 file changed
Objects/object.c
@@ -1598,6 +1598,15 @@ _Py_ReadyTypes(void)
1598
if (PyType_Ready(&PyDict_Type) < 0)
1599
Py_FatalError("Can't initialize dict type");
1600
1601
+ if (PyType_Ready(&PyDictKeys_Type) < 0)
1602
+ Py_FatalError("Can't initialize dict keys type");
1603
+
1604
+ if (PyType_Ready(&PyDictValues_Type) < 0)
1605
+ Py_FatalError("Can't initialize dict values type");
1606
1607
+ if (PyType_Ready(&PyDictItems_Type) < 0)
1608
+ Py_FatalError("Can't initialize dict items type");
1609
1610
if (PyType_Ready(&PyODict_Type) < 0)
1611
Py_FatalError("Can't initialize OrderedDict type");
1612
0 commit comments