[pypy-commit] pypy unicode-utf8-py3: typo

mattip pypy.commits at gmail.com
Sun Oct 21 14:40:32 EDT 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: unicode-utf8-py3
Changeset: r95228:10fdcbcd9d3f
Date: 2018-10-21 21:39 +0300
http://bitbucket.org/pypy/pypy/changeset/10fdcbcd9d3f/

Log:	typo

diff --git a/pypy/interpreter/unicodehelper.py b/pypy/interpreter/unicodehelper.py
--- a/pypy/interpreter/unicodehelper.py
+++ b/pypy/interpreter/unicodehelper.py
@@ -108,7 +108,7 @@
     from pypy.module._codecs import interp_codecs
     state = space.fromcache(interp_codecs.CodecState)
     if _WIN32:
-        errorhandler=state.encode_error_handler,
+        errorhandler=state.encode_error_handler
         utf8 = space.utf8_w(w_uni)
         bytes = utf8_encode_mbcs(utf8, 'strict', errorhandler)
     elif _MACOSX:


More information about the pypy-commit mailing list