Commit 43a976e3 authored by Benjamin Peterson's avatar Benjamin Peterson

remove duplicated type ready

parent b9c73e8c
...@@ -1538,9 +1538,6 @@ _Py_ReadyTypes(void) ...@@ -1538,9 +1538,6 @@ _Py_ReadyTypes(void)
if (PyType_Ready(&PyNone_Type) < 0) if (PyType_Ready(&PyNone_Type) < 0)
Py_FatalError("Can't initialize None type"); Py_FatalError("Can't initialize None type");
if (PyType_Ready(Py_Ellipsis->ob_type) < 0)
Py_FatalError("Can't initialize type(Ellipsis)");
if (PyType_Ready(&PyNotImplemented_Type) < 0) if (PyType_Ready(&PyNotImplemented_Type) < 0)
Py_FatalError("Can't initialize NotImplemented type"); Py_FatalError("Can't initialize NotImplemented type");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment