diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-07-20 22:39:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-07-20 22:39:34 (GMT) |
commit | 20f9c3c50f5e642295040c05e574ff9dc84bf207 (patch) | |
tree | a0bb84cba5bcdcb1fb7b059930076f52d3d3225c /Objects | |
parent | 013783c529cfc459d05d261f5053ad7bf7d88c29 (diff) | |
download | cpython-20f9c3c50f5e642295040c05e574ff9dc84bf207.zip cpython-20f9c3c50f5e642295040c05e574ff9dc84bf207.tar.gz cpython-20f9c3c50f5e642295040c05e574ff9dc84bf207.tar.bz2 |
revert unintended changes
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 1 |
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; } |