mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
- Updates documentation related to previously required comment headers. - Removes all comment headers from stubs - Occasionally included a header for stubs that were noted to be incomplete or contained todo's.
29 lines
557 B
Python
29 lines
557 B
Python
from typing import Any, Dict
|
|
|
|
def run(statement: str,
|
|
globals: Dict[str, Any] = None,
|
|
locals: Dict[str, Any] = None) -> None:
|
|
...
|
|
|
|
def runeval(expression: str,
|
|
globals: Dict[str, Any] = None,
|
|
locals: Dict[str, Any] = None) -> Any:
|
|
...
|
|
|
|
def runctx(statement: str,
|
|
globals: Dict[str, Any],
|
|
locals: Dict[str, Any]) -> None:
|
|
...
|
|
|
|
def runcall(*args: Any, **kwds: Any) -> Any:
|
|
...
|
|
|
|
def set_trace() -> None:
|
|
...
|
|
|
|
def post_mortem(t: Any = None) -> None:
|
|
...
|
|
|
|
def pm() -> None:
|
|
...
|