commit | bfebfd81de21b7906df386fce845f2b1f5ffd212 | [log] [tgz] |
---|---|---|
author | Terry Jan Reedy <tjreedy@udel.edu> | Sat Sep 30 17:37:53 2017 -0400 |
committer | GitHub <noreply@github.com> | Sat Sep 30 17:37:53 2017 -0400 |
tree | e5cc07275ae0813f941fc99ebd963fe0cb1296d5 | |
parent | 7dc46d8cf5854d9f4ce3271b29c21aea4872e8ad [diff] [blame] |
bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839)
diff --git a/Lib/idlelib/pathbrowser.py b/Lib/idlelib/pathbrowser.py index b0c8c6d..c0aa2a1 100644 --- a/Lib/idlelib/pathbrowser.py +++ b/Lib/idlelib/pathbrowser.py
@@ -9,7 +9,7 @@ class PathBrowser(ModuleBrowser): - def __init__(self, flist, _htest=False, _utest=False): + def __init__(self, flist, *, _htest=False, _utest=False): """ _htest - bool, change box location when running htest """