]> granicus.if.org Git - python/commitdiff
remove duplicated type ready
authorBenjamin Peterson <benjamin@python.org>
Sat, 30 Jul 2011 03:44:42 +0000 (22:44 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sat, 30 Jul 2011 03:44:42 +0000 (22:44 -0500)
Objects/object.c

index a91c46a39194a82964c8ee434f5a6811cd8a59bc..3240bc37be4a7f8ef397201c5eafc25d7cd74597 100644 (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");