summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
diff options
context:
space:
mode:
authorNadeem Vawda <nadeem.vawda@gmail.com>2013-02-02 19:25:19 (GMT)
committerNadeem Vawda <nadeem.vawda@gmail.com>2013-02-02 19:25:19 (GMT)
commitc27bcbf86316fd45180a8b881c55ed3ac7f9fa50 (patch)
tree068e6b5327cd3a1052fb882404a7bb64f9a46371 /Lib/test/test_builtin.py
parent672671da47582101060819f94eb054fa344c6e5c (diff)
parent637525718873f9c6571078e0201523438b17d341 (diff)
downloadcpython-c27bcbf86316fd45180a8b881c55ed3ac7f9fa50.zip
cpython-c27bcbf86316fd45180a8b881c55ed3ac7f9fa50.tar.gz
cpython-c27bcbf86316fd45180a8b881c55ed3ac7f9fa50.tar.bz2
Back out fix for issue #13886; it introduced a new bug in interactive readline use.
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r--Lib/test/test_builtin.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py
index 704fe9c..bf005c5 100644
--- a/Lib/test/test_builtin.py
+++ b/Lib/test/test_builtin.py
@@ -20,13 +20,6 @@ try:
import pty, signal
except ImportError:
pty = signal = None
-# Importing this module has the side-effect of changing the behavior of input().
-# Ensure that we always use the readline version (if available), so we don't get
-# different results depending on what other tests have already imported.
-try:
- import readline
-except ImportError:
- pass
class Squares: