mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 10:51:15 +08:00
profile/cProfile: minor improvements (#4202)
Co-authored-by: hauntsaninja <>
This commit is contained in:
@@ -19,9 +19,10 @@ class Profile:
|
||||
def print_stats(self, sort: Union[str, int] = ...) -> None: ...
|
||||
def dump_stats(self, file: _Path) -> None: ...
|
||||
def create_stats(self) -> None: ...
|
||||
def snapshot_stats(self) -> None: ...
|
||||
def run(self: _SelfT, cmd: str) -> _SelfT: ...
|
||||
def runctx(self: _SelfT, cmd: str, globals: Dict[str, Any], locals: Dict[str, Any]) -> _SelfT: ...
|
||||
def runcall(self, func: Callable[..., _T], *args: Any, **kw: Any) -> _T: ...
|
||||
def runcall(self, __func: Callable[..., _T], *args: Any, **kw: Any) -> _T: ...
|
||||
if sys.version_info >= (3, 8):
|
||||
def __enter__(self: _SelfT) -> _SelfT: ...
|
||||
def __exit__(self, *exc_info: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user