From: Martin v. Löwis <martin@v.loewis.de>
Date: Wed, 11 Jul 2012 06:32:05 +0000 (+0200)
Subject: Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.
X-Git-Tag: v2.7.4rc1~706
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dbde88696b5c36d5d62d6b8731688c10b26ce521;p=python

Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.
---

diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index 55ae5adeaf..83d2f4825f 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -1,7 +1,7 @@
 What's New in IDLE 2.7.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.
 
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