File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11What's New in IDLE 3.2.4?
22=========================
33
4- - Issue #13532: Check that arguments to sys.stdout.write are strings.
4+ - Issue #13532, #15319 : Check that arguments to sys.stdout.write are strings.
55
66- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
77 Erroneous tool tips have been corrected. Default added for callables.
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ def handle(self):
269269 """Override base method"""
270270 executive = Executive (self )
271271 self .register ("exec" , executive )
272- sys .stdin = self .console = _RPCFile ( self .get_remote_proxy ("stdin" ) )
272+ sys .stdin = self .console = self .get_remote_proxy ("stdin" )
273273 sys .stdout = _RPCFile (self .get_remote_proxy ("stdout" ))
274274 sys .stderr = _RPCFile (self .get_remote_proxy ("stderr" ))
275275 # page help() text to shell.
You can’t perform that action at this time.
0 commit comments