From 8a75bed3177a68dbd49ef5e9559ed3bf6ea4438d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Wed, 11 Jul 2012 08:29:03 +0200 Subject: Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka. --- Lib/idlelib/NEWS.txt | 2 +- Lib/idlelib/run.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index d99e231..b23b2a7 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -1,7 +1,7 @@ What's New in IDLE 3.2.4? ========================= -- Issue #13532: Check that arguments to sys.stdout.write are strings. +- Issue #13532, #15319: Check that arguments to sys.stdout.write are strings. - Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE. Erroneous tool tips have been corrected. Default added for callables. diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 5c9c381..4296aaf 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. -- cgit v0.12