move test_trace.py so as not to conflict with future tests for the trace module

This commit is contained in:
Benjamin Peterson 2010-07-20 22:37:19 +00:00
parent 533a167a71
commit 013783c529
8 changed files with 31 additions and 11 deletions

View file

@ -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;
}