diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-07-11 06:29:55 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-07-11 06:29:55 (GMT) |
commit | 9ba4545f974a70d6740b5ef674483b6621978416 (patch) | |
tree | ea084110d28fe59f42bea3ca5f28c45603bf8a2a /Lib/idlelib/run.py | |
parent | 44b4b6a9a584dcf2c9a968e66ef5c03558ca503d (diff) | |
parent | 8a75bed3177a68dbd49ef5e9559ed3bf6ea4438d (diff) | |
download | cpython-9ba4545f974a70d6740b5ef674483b6621978416.zip cpython-9ba4545f974a70d6740b5ef674483b6621978416.tar.gz cpython-9ba4545f974a70d6740b5ef674483b6621978416.tar.bz2 |
merge 3.2
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 e4b9279..e5a8e6e 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -282,7 +282,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")) sys.displayhook = rpc.displayhook |