Author: Armin Rigo <[email protected]>
Branch: py3.5
Changeset: r90798:63f85f548a14
Date: 2017-03-23 17:51 +0100
http://bitbucket.org/pypy/pypy/changeset/63f85f548a14/

Log:    Disable the insert key (and equivalents) in PyPy 3 (possibly until
        someone complains)

diff --git a/lib_pypy/pyrepl/commands.py b/lib_pypy/pyrepl/commands.py
--- a/lib_pypy/pyrepl/commands.py
+++ b/lib_pypy/pyrepl/commands.py
@@ -384,4 +384,7 @@
 class quoted_insert(Command):
     kills_digit_arg = 0
     def do(self):
-        self.reader.push_input_trans(QITrans())
+        # XXX in Python 3, processing insert/C-q/C-v keys crashes
+        # because of a mixture of str and bytes.  Disable these keys.
+        pass
+        #self.reader.push_input_trans(QITrans())
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to