summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-20 22:39:34 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-20 22:39:34 (GMT)
commit20f9c3c50f5e642295040c05e574ff9dc84bf207 (patch)
treea0bb84cba5bcdcb1fb7b059930076f52d3d3225c /Objects/typeobject.c
parent013783c529cfc459d05d261f5053ad7bf7d88c29 (diff)
downloadcpython-20f9c3c50f5e642295040c05e574ff9dc84bf207.zip
cpython-20f9c3c50f5e642295040c05e574ff9dc84bf207.tar.gz
cpython-20f9c3c50f5e642295040c05e574ff9dc84bf207.tar.bz2
revert unintended changes
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r--Objects/typeobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 505ca68..268a924 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -6094,7 +6094,6 @@ supercheck(PyTypeObject *type, PyObject *obj)
PyErr_SetString(PyExc_TypeError,
"super(type, obj): "
"obj must be an instance or subtype of type");
- printf("%s\n", type->tp_name);
return NULL;
}