[pypy-svn] r17974 - pypy/dist/pypy/interpreter/pyparser

ac at codespeak.net ac at codespeak.net
Thu Sep 29 14:44:50 CEST 2005


Author: ac
Date: Thu Sep 29 14:44:50 2005
New Revision: 17974

Modified:
   pypy/dist/pypy/interpreter/pyparser/pythonparse.py
Log:
Fix typo.

Modified: pypy/dist/pypy/interpreter/pyparser/pythonparse.py
==============================================================================
--- pypy/dist/pypy/interpreter/pyparser/pythonparse.py	(original)
+++ pypy/dist/pypy/interpreter/pyparser/pythonparse.py	Thu Sep 29 14:44:50 2005
@@ -35,7 +35,7 @@
         else:
             enc = _normalize_encoding(_check_for_encoding(textsrc))
             if enc is not None and enc not in ('utf-8', 'iso-8859-1'):
-                textsrc = _recode_in_utf8(builder.space, textsrc, enc)
+                textsrc = _recode_to_utf8(builder.space, textsrc, enc)
 
         lines = [line + '\n' for line in textsrc.split('\n')]
         builder.source_encoding = enc



More information about the Pypy-commit mailing list