summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-07-20 22:37:19 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-07-20 22:37:19 (GMT)
commit013783c529cfc459d05d261f5053ad7bf7d88c29 (patch)
tree14e1b8205a78e85d9ba688f315cf89f82aad3a20 /Objects
parent533a167a713be4a30b92583636cd2323f4c8c3aa (diff)
downloadcpython-013783c529cfc459d05d261f5053ad7bf7d88c29.zip
cpython-013783c529cfc459d05d261f5053ad7bf7d88c29.tar.gz
cpython-013783c529cfc459d05d261f5053ad7bf7d88c29.tar.bz2
move test_trace.py so as not to conflict with future tests for the trace module
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 268a924..505ca68 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -6094,6 +6094,7 @@ 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;
}