Kaydet (Commit) 035b1857 authored tarafından Neal Norwitz's avatar Neal Norwitz

err is no longer used

üst b8f81d48
...@@ -1654,7 +1654,7 @@ xmlparse_setattr(xmlparseobject *self, char *name, PyObject *v) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment