profile/cProfile: minor improvements (#4202)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2020-06-08 02:45:55 -07:00
committed by GitHub
parent df6136c4ac
commit f2f65bcf8d
3 changed files with 5 additions and 4 deletions

View File

@@ -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: ...

View File

@@ -13,6 +13,8 @@ else:
_Path = Union[bytes, Text]
class Profile:
bias: int
def __init__(self, timer: Optional[Callable[[], float]] = ..., bias: Optional[int] = ...) -> None: ...
def set_cmd(self, cmd: str) -> None: ...
def simulate_call(self, name: str) -> None: ...
@@ -23,5 +25,5 @@ class Profile:
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: ...
def calibrate(self, m: int, verbose: int = ...) -> float: ...