[pypy-svn] r63044 - pypy/trunk/pypy/lib

afa at codespeak.net afa at codespeak.net
Wed Mar 18 17:23:05 CET 2009


Author: afa
Date: Wed Mar 18 17:23:04 2009
New Revision: 63044

Modified:
   pypy/trunk/pypy/lib/pyexpat.py
Log:
Typo: UseForeignDTD should call XML_UseForeignDTD...


Modified: pypy/trunk/pypy/lib/pyexpat.py
==============================================================================
--- pypy/trunk/pypy/lib/pyexpat.py	(original)
+++ pypy/trunk/pypy/lib/pyexpat.py	Wed Mar 18 17:23:04 2009
@@ -427,7 +427,7 @@
                 flag = XML_TRUE
             else:
                 flag = XML_FALSE
-            XML_SetParamEntityParsing(self.itself, flag)
+            XML_UseForeignDTD(self.itself, flag)
 
     def __getattr__(self, name):
         if name == 'buffer_text':



More information about the Pypy-commit mailing list