diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:12 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-10-23 00:15:12 (GMT) |
commit | 7a16207ce129f3068c97b51bcdc0614199af60d5 (patch) | |
tree | b8a47c484ba8e51f870851991ffddb9834476a93 /Lib/idlelib/idle_test/htest.py | |
parent | ed91883bf537aec64eea7d75500f7d36d58b2713 (diff) | |
download | cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.zip cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.tar.gz cpython-7a16207ce129f3068c97b51bcdc0614199af60d5.tar.bz2 |
Issue #3068: Add Idle extension configuration dialog to Options menu.
Original patch by Tal Einat.
Diffstat (limited to 'Lib/idlelib/idle_test/htest.py')
-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 1be677b..27377ae 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', |