mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-10 05:22:23 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -50,7 +50,7 @@ class Stats:
|
||||
self: Self,
|
||||
__arg: None | str | Profile | _cProfile = ...,
|
||||
*args: None | str | Profile | _cProfile | Self,
|
||||
stream: IO[Any] | None = ...,
|
||||
stream: IO[Any] | None = None,
|
||||
) -> None: ...
|
||||
def init(self, arg: None | str | Profile | _cProfile) -> None: ...
|
||||
def load_stats(self, arg: None | str | Profile | _cProfile) -> None: ...
|
||||
@@ -74,6 +74,6 @@ class Stats:
|
||||
def print_callees(self: Self, *amount: _Selector) -> Self: ...
|
||||
def print_callers(self: Self, *amount: _Selector) -> Self: ...
|
||||
def print_call_heading(self, name_size: int, column_title: str) -> None: ...
|
||||
def print_call_line(self, name_size: int, source: str, call_dict: dict[str, Any], arrow: str = ...) -> None: ...
|
||||
def print_call_line(self, name_size: int, source: str, call_dict: dict[str, Any], arrow: str = "->") -> None: ...
|
||||
def print_title(self) -> None: ...
|
||||
def print_line(self, func: str) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user