diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-09-30 21:37:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-30 21:37:53 (GMT) |
commit | bfebfd81de21b7906df386fce845f2b1f5ffd212 (patch) | |
tree | e5cc07275ae0813f941fc99ebd963fe0cb1296d5 /Lib/idlelib/config_key.py | |
parent | 7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad (diff) | |
download | cpython-bfebfd81de21b7906df386fce845f2b1f5ffd212.zip cpython-bfebfd81de21b7906df386fce845f2b1f5ffd212.tar.gz cpython-bfebfd81de21b7906df386fce845f2b1f5ffd212.tar.bz2 |
bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839)
Diffstat (limited to 'Lib/idlelib/config_key.py')
-rw-r--r-- | Lib/idlelib/config_key.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/config_key.py b/Lib/idlelib/config_key.py index 5556b76..3a865f8 100644 --- a/Lib/idlelib/config_key.py +++ b/Lib/idlelib/config_key.py @@ -14,7 +14,7 @@ class GetKeysDialog(Toplevel): keyerror_title = 'Key Sequence Error' def __init__(self, parent, title, action, currentKeySequences, - _htest=False, _utest=False): + *, _htest=False, _utest=False): """ action - string, the name of the virtual event these keys will be mapped to |