From: Benjamin Peterson Date: Thu, 4 Apr 2013 02:35:12 +0000 (-0400) Subject: close search and replace dialog after it is used (closes #17625) X-Git-Tag: v3.2.4~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7684fa8a38599fac51b838ccd62db7edadc7743d;p=python close search and replace dialog after it is used (closes #17625) --- diff --git a/Lib/idlelib/ReplaceDialog.py b/Lib/idlelib/ReplaceDialog.py index e5a1371388..e73f2c5039 100644 --- a/Lib/idlelib/ReplaceDialog.py +++ b/Lib/idlelib/ReplaceDialog.py @@ -123,6 +123,7 @@ class ReplaceDialog(SearchDialogBase): text.undo_block_stop() if first and last: self.show_hit(first, last) + self.close() def do_find(self, ok=0): if not self.engine.getprog(): diff --git a/Misc/NEWS b/Misc/NEWS index 9775a8a2da..cfa80627f4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -2,6 +2,17 @@ Python News +++++++++++ +What's New in Python 3.2.4? +=========================== + +*Release date: XX-Apr-2013* + +Library +------- + +- Issue #17625: In IDLE, close the replace dialog after it is used. + + What's New in Python 3.2.4 release candidate 1? ===============================================