diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-07-20 22:37:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-07-20 22:37:19 (GMT) |
commit | 013783c529cfc459d05d261f5053ad7bf7d88c29 (patch) | |
tree | 14e1b8205a78e85d9ba688f315cf89f82aad3a20 /Objects | |
parent | 533a167a713be4a30b92583636cd2323f4c8c3aa (diff) | |
download | cpython-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.c | 1 |
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; } |