[pypy-svn] r16215 - pypy/dist/pypy/module/_codecs
ale at codespeak.net
ale at codespeak.net
Mon Aug 22 17:11:08 CEST 2005
Author: ale
Date: Mon Aug 22 17:11:04 2005
New Revision: 16215
Modified:
pypy/dist/pypy/module/_codecs/app_codecs.py
Log:
typo
Modified: pypy/dist/pypy/module/_codecs/app_codecs.py
==============================================================================
--- pypy/dist/pypy/module/_codecs/app_codecs.py (original)
+++ pypy/dist/pypy/module/_codecs/app_codecs.py Mon Aug 22 17:11:04 2005
@@ -201,7 +201,7 @@
"""
res,consumed = PyUnicode_DecodeUTF16Stateful(data,len(data),errors)
res = ''.join(res)
- return res, consume
+ return res, consumed
def unicode_escape_decode( data,errors='strict'):
"""None
More information about the Pypy-commit
mailing list