summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-08-21 23:40:16 (GMT)
committerThomas Wouters <thomas@python.org>2006-08-21 23:40:16 (GMT)
commit0008602188da017f877216fbfc89c7fac8952add (patch)
tree1dcfdd887ca1a2e93aba2a8def86cfc7491e3621
parent389381564cfa936c8e50bc51dc53b55cba857652 (diff)
downloadcpython-0008602188da017f877216fbfc89c7fac8952add.zip
cpython-0008602188da017f877216fbfc89c7fac8952add.tar.gz
cpython-0008602188da017f877216fbfc89c7fac8952add.tar.bz2
remove debugging turd.
-rw-r--r--Objects/typeobject.c4
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;