Author: Ronan Lamy <[email protected]>
Branch: unicode-utf8
Changeset: r93399:dcf0b6da89e9
Date: 2017-12-12 19:37 +0000
http://bitbucket.org/pypy/pypy/changeset/dcf0b6da89e9/

Log:    merge heads

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -43,3 +43,4 @@
 .. branch: unicode-utf8-re
 .. branch: utf8-io
 Utf8 handling for unicode
+
diff --git a/pypy/interpreter/unicodehelper.py 
b/pypy/interpreter/unicodehelper.py
--- a/pypy/interpreter/unicodehelper.py
+++ b/pypy/interpreter/unicodehelper.py
@@ -356,7 +356,7 @@
         builder.append(res)
     else:
         try:
-            chr = r_uint(int(s[pos:pos + digits], 16))
+            chr = int(s[pos:pos + digits], 16)
         except ValueError:
             endinpos = pos
             while s[endinpos] in hexdigits:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to