[pypy-commit] pypy unicode-utf8-py3: typo, repeat of 10fdcbcd9d3f

mattip pypy.commits at gmail.com
Thu Nov 1 01:13:54 EDT 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: unicode-utf8-py3
Changeset: r95262:92689c7f2938
Date: 2018-10-30 13:41 +0200
http://bitbucket.org/pypy/pypy/changeset/92689c7f2938/

Log:	typo, repeat of 10fdcbcd9d3f

diff --git a/pypy/interpreter/unicodehelper.py b/pypy/interpreter/unicodehelper.py
--- a/pypy/interpreter/unicodehelper.py
+++ b/pypy/interpreter/unicodehelper.py
@@ -77,7 +77,7 @@
 def fsdecode(space, w_string):
     from pypy.module._codecs import interp_codecs
     state = space.fromcache(interp_codecs.CodecState)
-    errorhandler=state.decode_error_handler,
+    errorhandler=state.decode_error_handler
     if _WIN32:
         bytes = space.bytes_w(w_string)
         uni = str_decode_mbcs(bytes, 'strict', True, errorhandler,


More information about the pypy-commit mailing list