cpython: 99e363e67844 (original) (raw)
Mercurial > cpython
changeset 83258:99e363e67844 2.7
#17585: Fixed IDLE regression. Now closes when using exit() or quit(). [#17585]
Roger Serwy roger.serwy@gmail.com | |
---|---|
date | Thu, 11 Apr 2013 19:13:21 -0500 |
parents | 87331820569a |
children | b57245574717 |
files | Lib/idlelib/PyShell.py Misc/NEWS |
diffstat | 2 files changed, 5 insertions(+), 0 deletions(-)[+] [-] Lib/idlelib/PyShell.py 3 Misc/NEWS 2 |
line wrap: on
line diff
--- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -1370,6 +1370,9 @@ class PseudoInputFile(PseudoFile): self._line_buffer = line[size:] return line[:size]
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -37,6 +37,8 @@ Library IDLE ---- +- Issue #17585: Fixed IDLE regression. Now closes when using exit() or quit(). +