mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
stdlib: Add defaults for positional-only parameters (#9655)
This commit is contained in:
@@ -60,7 +60,7 @@ class TkappType:
|
||||
|
||||
def createtimerhandler(self, __milliseconds, __func): ...
|
||||
def deletecommand(self, __name): ...
|
||||
def dooneevent(self, __flags: int = ...): ...
|
||||
def dooneevent(self, __flags: int = 0): ...
|
||||
def eval(self, __script: str) -> str: ...
|
||||
def evalfile(self, __fileName): ...
|
||||
def exprboolean(self, __s): ...
|
||||
@@ -76,7 +76,7 @@ class TkappType:
|
||||
def globalunsetvar(self, *args, **kwargs): ...
|
||||
def interpaddr(self): ...
|
||||
def loadtk(self) -> None: ...
|
||||
def mainloop(self, __threshold: int = ...): ...
|
||||
def mainloop(self, __threshold: int = 0): ...
|
||||
def quit(self): ...
|
||||
def record(self, __script): ...
|
||||
def setvar(self, *ags, **kwargs): ...
|
||||
|
||||
Reference in New Issue
Block a user