diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-07-11 08:29:03 +0200 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-07-11 08:29:03 +0200 |
commit | 8a75bed3177a68dbd49ef5e9559ed3bf6ea4438d (patch) | |
tree | 182a9c9e200e7b8a701ebb1d599e45c8b2123720 /Lib/idlelib/run.py | |
parent | 59b9a7bc61f856e69f17661e009195beaa210c26 (diff) | |
download | cpython-git-8a75bed3177a68dbd49ef5e9559ed3bf6ea4438d.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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 5c9c38197a..4296aaf323 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -269,7 +269,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")) # page help() text to shell. |