summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/configdialog.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2017-09-30 21:37:53 (GMT)
committerGitHub <noreply@github.com>2017-09-30 21:37:53 (GMT)
commitbfebfd81de21b7906df386fce845f2b1f5ffd212 (patch)
treee5cc07275ae0813f941fc99ebd963fe0cb1296d5 /Lib/idlelib/configdialog.py
parent7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad (diff)
downloadcpython-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/configdialog.py')
-rw-r--r--Lib/idlelib/configdialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py
index a05f3b9..d27b072 100644
--- a/Lib/idlelib/configdialog.py
+++ b/Lib/idlelib/configdialog.py
@@ -41,7 +41,7 @@ class ConfigDialog(Toplevel):
"""Config dialog for IDLE.
"""
- def __init__(self, parent, title='', _htest=False, _utest=False):
+ def __init__(self, parent, title='', *, _htest=False, _utest=False):
"""Show the tabbed dialog for user configuration.
Args: