[pypy-svn] r61083 - pypy/trunk/pypy/module/_codecs

fijal at codespeak.net fijal at codespeak.net
Sun Jan 18 18:03:46 CET 2009


Author: fijal
Date: Sun Jan 18 18:03:45 2009
New Revision: 61083

Modified:
   pypy/trunk/pypy/module/_codecs/app_codecs.py
Log:
grrrrr


Modified: pypy/trunk/pypy/module/_codecs/app_codecs.py
==============================================================================
--- pypy/trunk/pypy/module/_codecs/app_codecs.py	(original)
+++ pypy/trunk/pypy/module/_codecs/app_codecs.py	Sun Jan 18 18:03:45 2009
@@ -812,7 +812,7 @@
 #    /* Default to Latin-1 */
     if mapping == 'latin-1':
         import _codecs
-        return _codecs.latin_1_encode(p, size, errors)
+        return _codecs.latin_1_encode(p, errors)
     if (size == 0):
         return ''
     inpos = 0



More information about the Pypy-commit mailing list