diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-20 19:57:13 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-20 19:57:13 -0400 |
commit | 5d46ab1274232d51060ba2e45e6c345ef4e5b970 (patch) | |
tree | 7398216e5fd4a31147d682c84b2b052f39b831d2 /Lib/idlelib/idle_test/htest.py | |
parent | 16ad5cfad391a8e7c124ccaa984a56ad123d0ab2 (diff) | |
download | cpython-5d46ab1274232d51060ba2e45e6c345ef4e5b970.tar.gz cpython-5d46ab1274232d51060ba2e45e6c345ef4e5b970.zip |
Issue #16893: Replace help.txt with idle.html for Idle doc display.
The new idlelib/idle.html is copied from Doc/build/html/idle.html.
It looks better than help.txt and will better document Idle as released.
The tkinter html viewer that works for this file was written by Rose Roseman.
The new code is in idlelib/help.py, a new file for help menu classes.
The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
Diffstat (limited to 'Lib/idlelib/idle_test/htest.py')
-rw-r--r-- | Lib/idlelib/idle_test/htest.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py index aa7f2e8f088..3a9885c7732 100644 --- a/Lib/idlelib/idle_test/htest.py +++ b/Lib/idlelib/idle_test/htest.py @@ -194,13 +194,6 @@ _grep_dialog_spec = { "should open that file \nin a new EditorWindow." } -_help_dialog_spec = { - 'file': 'EditorWindow', - 'kwds': {}, - 'msg': "If the help text displays, this works.\n" - "Text is selectable. Window is scrollable." - } - _io_binding_spec = { 'file': 'IOBinding', 'kwds': {}, @@ -279,6 +272,13 @@ _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 = { 'file': 'StackViewer', 'kwds': {}, |