summaryrefslogtreecommitdiff
path: root/Lib/idlelib/run.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-07-11 08:32:05 +0200
committerMartin v. Löwis <martin@v.loewis.de>2012-07-11 08:32:05 +0200
commitdbde88696b5c36d5d62d6b8731688c10b26ce521 (patch)
tree62202dad9f6def1eede6f650026a57ee281a22bc /Lib/idlelib/run.py
parentf8fc674f0bc1819a85e64e1f3174b682260adab6 (diff)
downloadcpython-git-dbde88696b5c36d5d62d6b8731688c10b26ce521.tar.gz
Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.
Diffstat (limited to 'Lib/idlelib/run.py')
-rw-r--r--Lib/idlelib/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py
index 67d1881060..c1b974a5e2 100644
--- a/Lib/idlelib/run.py
+++ b/Lib/idlelib/run.py
@@ -273,7 +273,7 @@ class MyHandler(rpc.RPCHandler):
"""Override base method"""
executive = Executive(self)
self.register("exec", executive)
- sys.stdin = self.console = _RPCFile(self.get_remote_proxy("stdin"))
+ sys.stdin = self.console = self.get_remote_proxy("stdin")
sys.stdout = _RPCFile(self.get_remote_proxy("stdout"))
sys.stderr = _RPCFile(self.get_remote_proxy("stderr"))
from idlelib import IOBinding