Author: Stefano Rivera <[email protected]>
Branch:
Changeset: r88054:ed8820ed0ae8
Date: 2016-11-01 15:35 -0700
http://bitbucket.org/pypy/pypy/changeset/ed8820ed0ae8/
Log: Fix minor transcription error from cpython C extension
diff --git a/pypy/module/pyexpat/interp_pyexpat.py
b/pypy/module/pyexpat/interp_pyexpat.py
--- a/pypy/module/pyexpat/interp_pyexpat.py
+++ b/pypy/module/pyexpat/interp_pyexpat.py
@@ -524,8 +524,8 @@
maxindex = XML_GetSpecifiedAttributeCount(self.itself)
else:
maxindex = 0
- while attrs[maxindex]:
- maxindex += 2 # copied
+ while attrs[maxindex]:
+ maxindex += 2 # copied
if self.ordered_attributes:
w_attrs = space.newlist([
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit