diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2023-12-04 04:45:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 04:45:56 (GMT) |
commit | 5a1b5316af648ae79bb91f28253b6272bbbd2886 (patch) | |
tree | 1dac4a71ecc1876a9b30f64ad5bd109b6c3d7d7b /Lib/idlelib/idle_test | |
parent | 09505c5c26d6a4c81b54786eb4196379e9cb223c (diff) | |
download | cpython-5a1b5316af648ae79bb91f28253b6272bbbd2886.zip cpython-5a1b5316af648ae79bb91f28253b6272bbbd2886.tar.gz cpython-5a1b5316af648ae79bb91f28253b6272bbbd2886.tar.bz2 |
gh-66819: More IDLE htest updates(3) (#112683)
Revise spec-callable pairs from percolator to end.
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r-- | Lib/idlelib/idle_test/htest.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py index a59b474..4042106 100644 --- a/Lib/idlelib/idle_test/htest.py +++ b/Lib/idlelib/idle_test/htest.py @@ -190,6 +190,13 @@ HelpSource_spec = { "<Escape>, [Cancel], or [X] prints None to shell" } +_helpwindow_spec = { + 'file': 'help', + 'kwds': {}, + 'msg': "If the help text displays, this works.\n" + "Text is selectable. Window is scrollable." + } + _io_binding_spec = { 'file': 'iomenu', 'kwds': {}, @@ -312,14 +319,7 @@ _scrolled_list_spec = { "Right clicking an item will display a popup." } -show_idlehelp_spec = { - 'file': 'help', - 'kwds': {}, - 'msg': "If the help text displays, this works.\n" - "Text is selectable. Window is scrollable." - } - -_stack_viewer_spec = { +_stackbrowser_spec = { 'file': 'stackviewer', 'kwds': {}, 'msg': "A stacktrace for a NameError exception.\n" |