[pypy-svn] r64223 - pypy/trunk/pypy/module/pyexpat

afa at codespeak.net afa at codespeak.net
Fri Apr 17 11:12:19 CEST 2009


Author: afa
Date: Fri Apr 17 11:12:16 2009
New Revision: 64223

Modified:
   pypy/trunk/pypy/module/pyexpat/interp_pyexpat.py
Log:
Correct the default value for parser.Parse: isfinal
This fixes tests in twisted.words.


Modified: pypy/trunk/pypy/module/pyexpat/interp_pyexpat.py
==============================================================================
--- pypy/trunk/pypy/module/pyexpat/interp_pyexpat.py	(original)
+++ pypy/trunk/pypy/module/pyexpat/interp_pyexpat.py	Fri Apr 17 11:12:16 2009
@@ -425,7 +425,7 @@
 
     # Parse methods
 
-    def Parse(self, space, data, isfinal=True):
+    def Parse(self, space, data, isfinal=False):
         """Parse(data[, isfinal])
 Parse XML data.  `isfinal' should be true at end of input."""
 



More information about the Pypy-commit mailing list