diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-12-28 04:08:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-28 04:08:03 (GMT) |
commit | 4c7f34f73d2d16303798fc4a7043e641cee58e51 (patch) | |
tree | 2328a84e072c7470e0b7e3316e63cb970206ae98 /Lib/idlelib/idle_test/htest.py | |
parent | bbf695441af9def8a121ff3e245415d9fc0bab9a (diff) | |
download | cpython-4c7f34f73d2d16303798fc4a7043e641cee58e51.zip cpython-4c7f34f73d2d16303798fc4a7043e641cee58e51.tar.gz cpython-4c7f34f73d2d16303798fc4a7043e641cee58e51.tar.bz2 |
bpo-35598: IDLE: Update config_key.py with PEP8 names (GH-11330)
A few other changes make the code easier to follow.
(cherry picked from commit 55698cc39549523cafc13cc8dd47960d8f73a59f)
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
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 583e607..429081f 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" |