Commit 53dc4f01 authored by Roger Serwy's avatar Roger Serwy

#17585: Fixed IDLE regression. Now closes when using exit() or quit().

parent 77d8dbc1
......@@ -1370,6 +1370,9 @@ class PseudoInputFile(PseudoFile):
self._line_buffer = line[size:]
return line[:size]
def close(self):
self.shell.close()
usage_msg = """\
......
......@@ -37,6 +37,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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment