summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/help_about.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/help_about.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/help_about.py')
-rw-r--r--Lib/idlelib/help_about.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/help_about.py b/Lib/idlelib/help_about.py
index 679ac78..77b4b18 100644
--- a/Lib/idlelib/help_about.py
+++ b/Lib/idlelib/help_about.py
@@ -23,7 +23,7 @@ class AboutDialog(Toplevel):
"""Modal about dialog for idle
"""
- def __init__(self, parent, title=None, _htest=False, _utest=False):
+ def __init__(self, parent, title=None, *, _htest=False, _utest=False):
"""Create popup, do not return until tk widget destroyed.
parent - parent of this dialog