mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Change numerous default values to ... (#1722)
This is the convention, and some default values (e.g. strings) apparently break pytype.
This commit is contained in:
committed by
Matthias Kramm
parent
66821993f6
commit
54dd6ba27c
@@ -23,7 +23,7 @@ def runcall(*args: Any, **kwds: Any) -> Any:
|
||||
def set_trace() -> None:
|
||||
...
|
||||
|
||||
def post_mortem(t: Optional[Any] = None) -> None:
|
||||
def post_mortem(t: Optional[Any] = ...) -> None:
|
||||
...
|
||||
|
||||
def pm() -> None:
|
||||
|
||||
Reference in New Issue
Block a user