diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-16 00:02:59 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-04-16 00:02:59 (GMT) |
commit | 035b1857edb1d1193f00d54f9942cd972e809dec (patch) | |
tree | c88ac5dac95d6aaba282a6572b806816bf25b2d8 | |
parent | b8f81d48634ccee8a8a4089d04b81e1aadbc04fe (diff) | |
download | cpython-035b1857edb1d1193f00d54f9942cd972e809dec.zip cpython-035b1857edb1d1193f00d54f9942cd972e809dec.tar.gz cpython-035b1857edb1d1193f00d54f9942cd972e809dec.tar.bz2 |
err is no longer used
-rw-r--r-- | Modules/pyexpat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 16f0137..fe50e36 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -1654,7 +1654,7 @@ xmlparse_setattr(xmlparseobject *self, char *name, PyObject *v) static int xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg) { - int i, err; + int i; for (i = 0; handler_info[i].name != NULL; i++) Py_VISIT(op->handlers[i]); return 0; |