[Python-checkins] r45449 - python/trunk/Modules/pyexpat.c

neal.norwitz python-checkins at python.org
Sun Apr 16 02:03:00 CEST 2006


Author: neal.norwitz
Date: Sun Apr 16 02:02:59 2006
New Revision: 45449

Modified:
   python/trunk/Modules/pyexpat.c
Log:
err is no longer used

Modified: python/trunk/Modules/pyexpat.c
==============================================================================
--- python/trunk/Modules/pyexpat.c	(original)
+++ python/trunk/Modules/pyexpat.c	Sun Apr 16 02:02:59 2006
@@ -1654,7 +1654,7 @@
 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;


More information about the Python-checkins mailing list