diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:18 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:18 (GMT) |
commit | a9421fb3a3013a8aacc18959c28c1b0002f34025 (patch) | |
tree | 21947d5899838ca1deab5d84fcfb3a40abd226b8 /Lib/idlelib/idle_test | |
parent | c803bd84b529f3a300f9ba808b60dd50e4e365bf (diff) | |
download | cpython-a9421fb3a3013a8aacc18959c28c1b0002f34025.zip cpython-a9421fb3a3013a8aacc18959c28c1b0002f34025.tar.gz cpython-a9421fb3a3013a8aacc18959c28c1b0002f34025.tar.bz2 |
Issue #3068: Add Idle extension configuration dialog to Options menu.
Original patch by Tal Einat.
Diffstat (limited to 'Lib/idlelib/idle_test')
-rw-r--r-- | Lib/idlelib/idle_test/htest.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py index 1fe5ad4..aa7f2e8 100644 --- a/Lib/idlelib/idle_test/htest.py +++ b/Lib/idlelib/idle_test/htest.py @@ -93,6 +93,15 @@ _class_browser_spec = { "Double clicking on items prints a traceback for an exception " "that is ignored." } +ConfigExtensionsDialog_spec = { + 'file': 'configDialog', + 'kwds': {'title': 'Test Extension Configuration', + '_htest': True,}, + 'msg': "IDLE extensions dialog.\n" + "\n[Ok] to close the dialog.[Apply] to apply the settings and " + "and [Cancel] to revert all changes.\nRe-run the test to ensure " + "changes made have persisted." + } _color_delegator_spec = { 'file': 'ColorDelegator', |