[Python-checkins] cpython (3.3): #17511: Keep IDLE find dialog open after clicking "Find Next".

roger.serwy python-checkins at python.org
Tue Jun 11 06:08:19 CEST 2013


http://hg.python.org/cpython/rev/dac11f143581
changeset:   84086:dac11f143581
branch:      3.3
parent:      84083:89b106d298a9
user:        Roger Serwy <roger.serwy at gmail.com>
date:        Mon Jun 10 23:01:20 2013 -0500
summary:
  #17511: Keep IDLE find dialog open after clicking "Find Next".
Original patch by Sarah K.

files:
  Lib/idlelib/SearchDialog.py |  5 ++---
  Misc/ACKS                   |  1 +
  Misc/NEWS                   |  3 +++
  3 files changed, 6 insertions(+), 3 deletions(-)


diff --git a/Lib/idlelib/SearchDialog.py b/Lib/idlelib/SearchDialog.py
--- a/Lib/idlelib/SearchDialog.py
+++ b/Lib/idlelib/SearchDialog.py
@@ -24,13 +24,12 @@
 
     def create_widgets(self):
         f = SearchDialogBase.create_widgets(self)
-        self.make_button("Find", self.default_command, 1)
+        self.make_button("Find Next", self.default_command, 1)
 
     def default_command(self, event=None):
         if not self.engine.getprog():
             return
-        if self.find_again(self.text):
-            self.close()
+        self.find_again(self.text)
 
     def find_again(self, text):
         if not self.engine.getpat():
diff --git a/Misc/ACKS b/Misc/ACKS
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -606,6 +606,7 @@
 Sijin Joseph
 Andreas Jung
 Tattoo Mabonzo K.
+Sarah K.
 Bohuslav Kabrda
 Bob Kahn
 Kurt B. Kaiser
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,9 @@
 IDLE
 ----
 
+- Issue #17511: Keep IDLE find dialog open after clicking "Find Next".
+  Original patch by Sarah K.
+
 - Issue #18055: Move IDLE off of imp and on to importlib.
 
 - Issue #15392: Create a unittest framework for IDLE.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list