Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
253c8a32
Commit
253c8a32
authored
Aug 18, 2013
by
Terry Jan Reedy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #18592: Add docstrings to file being tested (idlelib.SearchDialogBase.py).
parent
177070a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
Lib/idlelib/SearchDialogBase.py
Lib/idlelib/SearchDialogBase.py
+17
-0
No files found.
Lib/idlelib/SearchDialogBase.py
View file @
253c8a32
'''Define SearchDialogBase used by Search, Replace, and Grep dialogs.'''
from
tkinter
import
*
class
SearchDialogBase
:
'''Create most of a modal search dialog (make_frame, create_widgets).
The wide left column contains:
1 or 2 text entry lines (create_entries, make_entry);
a row of standard radiobuttons (create_option_buttons);
a row of dialog specific radiobuttons (create_other_buttons).
The narrow right column contains command buttons
(create_command_buttons, make_button).
These are bound to functions that execute the command.
Except for command buttons, this base class is not limited to
items common to all three subclasses. Rather, it is the Find dialog
minus the "Find Next" command and its execution function.
The other dialogs override methods to replace and add widgets.
'''
title
=
"Search Dialog"
icon
=
"Search"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment