summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-30 03:44:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-30 03:44:42 (GMT)
commit43a976e3d9575233a7953b928f324d5f136ccfbf (patch)
treef9954d8a0831f63b54fa8fb74ff246da4b9f64bc
parentb9c73e8cf0d0bc70c555521974bc78ae2e890473 (diff)
downloadcpython-43a976e3d9575233a7953b928f324d5f136ccfbf.zip
cpython-43a976e3d9575233a7953b928f324d5f136ccfbf.tar.gz
cpython-43a976e3d9575233a7953b928f324d5f136ccfbf.tar.bz2
remove duplicated type ready
-rw-r--r--Objects/object.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Objects/object.c b/Objects/object.c
index a91c46a..3240bc3 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");