From: Roger Serwy Date: Fri, 12 Apr 2013 00:16:44 +0000 (-0500) Subject: #17585: Fixed IDLE regression. Now closes when using exit() or quit(). X-Git-Tag: v3.3.2~135 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1eafd1076eca6b63337a2d8bb1eecae5b57e7792;p=python #17585: Fixed IDLE regression. Now closes when using exit() or quit(). --- diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index c381f23b1e..177e49e55e 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -1365,6 +1365,9 @@ class PseudoInputFile(PseudoFile): self._line_buffer = line[size:] return line[:size] + def close(self): + self.shell.close() + usage_msg = """\ diff --git a/Lib/site.py b/Lib/site.py index b751006c88..87687e7a1b 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -369,12 +369,7 @@ def setquit(): # Shells like IDLE catch the SystemExit, but listen when their # stdin wrapper is closed. try: - fd = -1 - if hasattr(sys.stdin, "fileno"): - fd = sys.stdin.fileno() - if fd != 0: - # Don't close stdin if it wraps fd 0 - sys.stdin.close() + sys.stdin.close() except: pass raise SystemExit(code) diff --git a/Misc/NEWS b/Misc/NEWS index b8f687b556..ddfc701198 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -46,6 +46,8 @@ Library IDLE ---- +- Issue #17585: Fixed IDLE regression. Now closes when using exit() or quit(). + - Issue #17657: Show full Tk version in IDLE's about dialog. Patch by Todd Rovito.