mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +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.
31 lines
628 B
Python
31 lines
628 B
Python
# NOTE: This stub is incomplete - only contains some global functions
|
|
|
|
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:
|
|
...
|