diff options
| author | Benjamin Peterson <benjamin@python.org> | 2016-11-06 21:01:23 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2016-11-06 21:01:23 (GMT) |
| commit | 6e9d6b95363a584513cbd69467317976fcb45a51 (patch) | |
| tree | 4ef8252021646fd703cf3b30ff2d5cf7ac975e15 /Objects/object.c | |
| parent | 5fce4b464afbcf4d4839de9b99e5534c1bb35cf3 (diff) | |
| parent | 3bd79001555df15181524a0ba6843db3a0d3b03c (diff) | |
| download | cpython-6e9d6b95363a584513cbd69467317976fcb45a51.zip cpython-6e9d6b95363a584513cbd69467317976fcb45a51.tar.gz cpython-6e9d6b95363a584513cbd69467317976fcb45a51.tar.bz2 | |
merge 3.6
Diffstat (limited to 'Objects/object.c')
| -rw-r--r-- | Objects/object.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c index e08f9a9..5c639b2 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -1598,6 +1598,15 @@ _Py_ReadyTypes(void) if (PyType_Ready(&PyDict_Type) < 0) Py_FatalError("Can't initialize dict type"); + if (PyType_Ready(&PyDictKeys_Type) < 0) + Py_FatalError("Can't initialize dict keys type"); + + if (PyType_Ready(&PyDictValues_Type) < 0) + Py_FatalError("Can't initialize dict values type"); + + if (PyType_Ready(&PyDictItems_Type) < 0) + Py_FatalError("Can't initialize dict items type"); + if (PyType_Ready(&PyODict_Type) < 0) Py_FatalError("Can't initialize OrderedDict type"); |
