From: Benjamin Peterson Date: Sat, 30 Jul 2011 03:44:42 +0000 (-0500) Subject: remove duplicated type ready X-Git-Tag: v3.2.2rc1~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43a976e3d9575233a7953b928f324d5f136ccfbf;p=python remove duplicated type ready --- diff --git a/Objects/object.c b/Objects/object.c index a91c46a391..3240bc37be 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -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");