aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/browser.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2017-09-30 17:37:53 -0400
committerGitHub <noreply@github.com>2017-09-30 17:37:53 -0400
commitbfebfd81de21b7906df386fce845f2b1f5ffd212 (patch)
treee5cc07275ae0813f941fc99ebd963fe0cb1296d5 /Lib/idlelib/browser.py
parent7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad (diff)
downloadcpython-bfebfd81de21b7906df386fce845f2b1f5ffd212.tar.gz
cpython-bfebfd81de21b7906df386fce845f2b1f5ffd212.zip
bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839)
Diffstat (limited to 'Lib/idlelib/browser.py')
-rw-r--r--Lib/idlelib/browser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/browser.py b/Lib/idlelib/browser.py
index 603d299518d..9b323155913 100644
--- a/Lib/idlelib/browser.py
+++ b/Lib/idlelib/browser.py
@@ -61,7 +61,7 @@ class ModuleBrowser:
# This class is the base class for pathbrowser.PathBrowser.
# Init and close are inherited, other methods are overriden.
- def __init__(self, flist, name, path, _htest=False, _utest=False):
+ def __init__(self, flist, name, path, *, _htest=False, _utest=False):
# XXX This API should change, if the file doesn't end in ".py"
# XXX the code here is bogus!
"""Create a window for browsing a module's structure.