Author: Ronny Pfannschmidt <[email protected]>
Branch: py3ksupport
Changeset: r151:69c3300fb54e
Date: 2011-10-20 18:25 +0200
http://bitbucket.org/pypy/pyrepl/changeset/69c3300fb54e/

Log:    add for forgotten basestring tuple for python3

diff --git a/pyrepl/reader.py b/pyrepl/reader.py
--- a/pyrepl/reader.py
+++ b/pyrepl/reader.py
@@ -28,6 +28,7 @@
 except NameError:
     unicode = str
     unichr = chr
+    basestring = bytes, str
 
 def _make_unctrl_map():
     uc_map = {}
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to