mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839)
This commit is contained in:
parent
7dc46d8cf5
commit
bfebfd81de
7 changed files with 7 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue