Add cProfile.__all__ (#7291)

This commit is contained in:
Alex Waygood
2022-02-19 20:23:21 +00:00
committed by GitHub
parent 98f94c3ba1
commit cf87ecd92a

View File

@@ -4,6 +4,8 @@ from types import CodeType
from typing import Any, Callable, TypeVar
from typing_extensions import ParamSpec
__all__ = ["run", "runctx", "Profile"]
def run(statement: str, filename: str | None = ..., sort: str | int = ...) -> None: ...
def runctx(
statement: str, globals: dict[str, Any], locals: dict[str, Any], filename: str | None = ..., sort: str | int = ...