aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/idle_test/htest.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2023-12-04 01:36:40 -0500
committerGitHub <noreply@github.com>2023-12-04 06:36:40 +0000
commite5b0db0315941b968ebcc2414bfcdd2da44fd3c2 (patch)
treeb5057747f6a695b5e1033ccce765e63d5ab5a077 /Lib/idlelib/idle_test/htest.py
parent5a1b5316af648ae79bb91f28253b6272bbbd2886 (diff)
downloadcpython-e5b0db0315941b968ebcc2414bfcdd2da44fd3c2.tar.gz
cpython-e5b0db0315941b968ebcc2414bfcdd2da44fd3c2.zip
gh-66819: More IDLE htest updates(4) (#112686)
Mostly double spacing before 'if __name__...'.
Diffstat (limited to 'Lib/idlelib/idle_test/htest.py')
-rw-r--r--Lib/idlelib/idle_test/htest.py60
1 files changed, 30 insertions, 30 deletions
diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py
index 4042106bf44..997f85ff5a7 100644
--- a/Lib/idlelib/idle_test/htest.py
+++ b/Lib/idlelib/idle_test/htest.py
@@ -170,8 +170,8 @@ _grep_dialog_spec = {
'msg': "Click the 'Show GrepDialog' button.\n"
"Test the various 'Find-in-files' functions.\n"
"The results should be displayed in a new '*Output*' window.\n"
- "'Right-click'->'Go to file/line' anywhere in the search results "
- "should open that file \nin a new EditorWindow."
+ "'Right-click'->'Go to file/line' in the search results\n "
+ "should open that file in a new EditorWindow."
}
HelpSource_spec = {
@@ -210,26 +210,6 @@ _io_binding_spec = {
"Check that changes were saved by opening the file elsewhere."
}
-_linenumbers_drag_scrolling_spec = {
- 'file': 'sidebar',
- 'kwds': {},
- 'msg': textwrap.dedent("""\
- 1. Click on the line numbers and drag down below the edge of the
- window, moving the mouse a bit and then leaving it there for a
- while. The text and line numbers should gradually scroll down,
- with the selection updated continuously.
-
- 2. With the lines still selected, click on a line number above
- or below the selected lines. Only the line whose number was
- clicked should be selected.
-
- 3. Repeat step #1, dragging to above the window. The text and
- line numbers should gradually scroll up, with the selection
- updated continuously.
-
- 4. Repeat step #2, clicking a line number below the selection."""),
- }
-
_multi_call_spec = {
'file': 'multicall',
'kwds': {},
@@ -295,6 +275,15 @@ _replace_dialog_spec = {
"Click [Close] or [X] to close the 'Replace Dialog'."
}
+_scrolled_list_spec = {
+ 'file': 'scrolledlist',
+ 'kwds': {},
+ 'msg': "You should see a scrollable list of items\n"
+ "Selecting (clicking) or double clicking an item "
+ "prints the name to the console or Idle shell.\n"
+ "Right clicking an item will display a popup."
+ }
+
_search_dialog_spec = {
'file': 'search',
'kwds': {},
@@ -310,21 +299,31 @@ _searchbase_spec = {
"Its only action is to close."
}
-_scrolled_list_spec = {
- 'file': 'scrolledlist',
+_sidebar_number_scrolling_spec = {
+ 'file': 'sidebar',
'kwds': {},
- 'msg': "You should see a scrollable list of items\n"
- "Selecting (clicking) or double clicking an item "
- "prints the name to the console or Idle shell.\n"
- "Right clicking an item will display a popup."
+ 'msg': textwrap.dedent("""\
+ 1. Click on the line numbers and drag down below the edge of the
+ window, moving the mouse a bit and then leaving it there for a
+ while. The text and line numbers should gradually scroll down,
+ with the selection updated continuously.
+
+ 2. With the lines still selected, click on a line number above
+ or below the selected lines. Only the line whose number was
+ clicked should be selected.
+
+ 3. Repeat step #1, dragging to above the window. The text and
+ line numbers should gradually scroll up, with the selection
+ updated continuously.
+
+ 4. Repeat step #2, clicking a line number below the selection."""),
}
_stackbrowser_spec = {
'file': 'stackviewer',
'kwds': {},
'msg': "A stacktrace for a NameError exception.\n"
- "Expand 'idlelib ...' and '<locals>'.\n"
- "Check that exc_value, exc_tb, and exc_type are correct.\n"
+ "Should have NameError and 1 traceback line."
}
_tooltip_spec = {
@@ -438,5 +437,6 @@ def run(*tests):
next_test()
root.mainloop()
+
if __name__ == '__main__':
run()