diff options
Diffstat (limited to 'Lib/idlelib/browser.py')
-rw-r--r-- | Lib/idlelib/browser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/browser.py b/Lib/idlelib/browser.py index 603d299518..9b32315591 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. |