[Python-3000-checkins] r51455 - python/branches/p3yk/Objects/typeobject.c

thomas.wouters python-3000-checkins at python.org
Tue Aug 22 01:40:18 CEST 2006


Author: thomas.wouters
Date: Tue Aug 22 01:40:16 2006
New Revision: 51455

Modified:
   python/branches/p3yk/Objects/typeobject.c
Log:

remove debugging turd.



Modified: python/branches/p3yk/Objects/typeobject.c
==============================================================================
--- python/branches/p3yk/Objects/typeobject.c	(original)
+++ python/branches/p3yk/Objects/typeobject.c	Tue Aug 22 01:40:16 2006
@@ -3050,10 +3050,6 @@
 	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;


More information about the Python-3000-checkins mailing list