Author: Armin Rigo <ar...@tunes.org>
Branch: py3.5
Changeset: r93667:636a04f92d4a
Date: 2018-01-15 11:18 +0100
http://bitbucket.org/pypy/pypy/changeset/636a04f92d4a/

Log:    uh revert part of 13b9de153e3c

diff --git a/lib_pypy/pyrepl/reader.py b/lib_pypy/pyrepl/reader.py
--- a/lib_pypy/pyrepl/reader.py
+++ b/lib_pypy/pyrepl/reader.py
@@ -57,7 +57,7 @@
         if unicodedata.category(c).startswith('C'):
             return r'\u%04x' % ord(c)
         else:
-            return unichr(c)
+            return c
 
 if 'a'[0] == b'a':
     # When running tests with python2, bytes characters are bytes.
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to