Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3bd7900

Browse files
committed
merge 3.5
2 parents 6b571e0 + db87c99 commit 3bd7900

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Objects/object.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1598,6 +1598,15 @@ _Py_ReadyTypes(void)
15981598
if (PyType_Ready(&PyDict_Type) < 0)
15991599
Py_FatalError("Can't initialize dict type");
16001600

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+
16011610
if (PyType_Ready(&PyODict_Type) < 0)
16021611
Py_FatalError("Can't initialize OrderedDict type");
16031612

0 commit comments

Comments
 (0)