diff options
author | Thomas Wouters <thomas@python.org> | 2006-08-21 23:40:16 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-08-21 23:40:16 (GMT) |
commit | 0008602188da017f877216fbfc89c7fac8952add (patch) | |
tree | 1dcfdd887ca1a2e93aba2a8def86cfc7491e3621 | |
parent | 389381564cfa936c8e50bc51dc53b55cba857652 (diff) | |
download | cpython-0008602188da017f877216fbfc89c7fac8952add.zip cpython-0008602188da017f877216fbfc89c7fac8952add.tar.gz cpython-0008602188da017f877216fbfc89c7fac8952add.tar.bz2 |
remove debugging turd.
-rw-r--r-- | Objects/typeobject.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index f30a826..d19801f 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3050,10 +3050,6 @@ PyType_Ready(PyTypeObject *type) PyTypeObject *base; Py_ssize_t i, n; - if (strcmp(type->tp_name, "C") == 0) { - _Py_Break(); - } - if (type->tp_flags & Py_TPFLAGS_READY) { assert(type->tp_dict != NULL); return 0; |