remove duplicated type ready

This commit is contained in:
Benjamin Peterson 2011-07-29 22:44:42 -05:00
parent b9c73e8cf0
commit 43a976e3d9
1 changed files with 0 additions and 3 deletions

View File

@ -1538,9 +1538,6 @@ _Py_ReadyTypes(void)
if (PyType_Ready(&PyNone_Type) < 0)
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)
Py_FatalError("Can't initialize NotImplemented type");