diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-13 21:27:26 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-07-13 21:27:26 (GMT) |
commit | 5283c4e108bf541ab43cb89e58745f20b4d559b4 (patch) | |
tree | 3ebd31118d205b09c513d50c4a5bcf71ea9671ca /Lib/idlelib/GrepDialog.py | |
parent | 5d0d2e6ed6b6ca99d7aa1f9a5ff9c4b0fa545f76 (diff) | |
download | cpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.zip cpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.tar.gz cpython-5283c4e108bf541ab43cb89e58745f20b4d559b4.tar.bz2 |
Issue #18592: Method return signature changes made to SearchDialogBase for
test purposes are now reflected in GrepDialog and ReplaceDialog. Docstrings
are improved. Initial patch by Saimadhav Heblikar
Diffstat (limited to 'Lib/idlelib/GrepDialog.py')
-rw-r--r-- | Lib/idlelib/GrepDialog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/GrepDialog.py b/Lib/idlelib/GrepDialog.py index 38b6480..5d22a9e 100644 --- a/Lib/idlelib/GrepDialog.py +++ b/Lib/idlelib/GrepDialog.py @@ -45,10 +45,10 @@ class GrepDialog(SearchDialogBase): def create_entries(self): SearchDialogBase.create_entries(self) - self.globent = self.make_entry("In files:", self.globvar) + self.globent = self.make_entry("In files:", self.globvar)[0] def create_other_buttons(self): - f = self.make_frame() + f = self.make_frame()[0] btn = Checkbutton(f, anchor="w", variable=self.recvar, |