diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2018-12-27 22:47:54 -0500 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-12-27 22:47:54 -0500 |
commit | 55698cc39549523cafc13cc8dd47960d8f73a59f (patch) | |
tree | eb0e5390a9ec38d152f0624638163126deb82aa1 /Lib/idlelib/idle_test/htest.py | |
parent | 0133f9fc9e8a35b223341d7b5641ac2f16ff2a19 (diff) | |
download | cpython-55698cc39549523cafc13cc8dd47960d8f73a59f.tar.gz cpython-55698cc39549523cafc13cc8dd47960d8f73a59f.zip |
bpo-35598: IDLE: Update config_key.py with PEP8 names (GH-11330)
A few other changes make the code easier to follow.
Diffstat (limited to 'Lib/idlelib/idle_test/htest.py')
-rw-r--r-- | Lib/idlelib/idle_test/htest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/htest.py b/Lib/idlelib/idle_test/htest.py index 583e607b767..429081f7ef2 100644 --- a/Lib/idlelib/idle_test/htest.py +++ b/Lib/idlelib/idle_test/htest.py @@ -141,12 +141,11 @@ _editor_window_spec = { "Best to close editor first." } -# Update once issue21519 is resolved. GetKeysDialog_spec = { 'file': 'config_key', 'kwds': {'title': 'Test keybindings', 'action': 'find-again', - 'currentKeySequences': [''] , + 'current_key_sequences': [['<Control-Key-g>', '<Key-F3>', '<Control-Key-G>']], '_htest': True, }, 'msg': "Test for different key modifier sequences.\n" |