Author: fijal
Branch: unicode-utf8
Changeset: r92614:5344b04bd9c1
Date: 2017-10-05 17:14 +0200
http://bitbucket.org/pypy/pypy/changeset/5344b04bd9c1/

Log:    whack

diff --git a/pypy/interpreter/unicodehelper.py 
b/pypy/interpreter/unicodehelper.py
--- a/pypy/interpreter/unicodehelper.py
+++ b/pypy/interpreter/unicodehelper.py
@@ -113,7 +113,7 @@
 
 def str_decode_ascii(s, slen, errors, final, errorhandler):
     try:
-        rutf8.check_ascii(s, slen)
+        rutf8.check_ascii(s)
         return s, slen, len(s)
     except rutf8.CheckError:
         raise Exception("foo")
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to