[Python-checkins] cpython (merge 3.6 -> default): merge 3.6
benjamin.peterson
python-checkins at python.org
Sun Nov 6 16:01:30 EST 2016
https://hg.python.org/cpython/rev/cc71f2c5aa68
changeset: 104940:cc71f2c5aa68
parent: 104937:442453fa3370
parent: 104939:1f84be591d56
user: Benjamin Peterson <benjamin at python.org>
date: Sun Nov 06 13:01:23 2016 -0800
summary:
merge 3.6
files:
Objects/object.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/Objects/object.c b/Objects/object.c
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1598,6 +1598,15 @@
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");
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list