err is no longer used

This commit is contained in:
Neal Norwitz 2006-04-16 00:02:59 +00:00
parent b8f81d4863
commit 035b1857ed

View file

@ -1654,7 +1654,7 @@ xmlparse_setattr(xmlparseobject *self, char *name, PyObject *v)
static int static int
xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg) xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg)
{ {
int i, err; int i;
for (i = 0; handler_info[i].name != NULL; i++) for (i = 0; handler_info[i].name != NULL; i++)
Py_VISIT(op->handlers[i]); Py_VISIT(op->handlers[i]);
return 0; return 0;