mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
- Moves the pdb stub from separate `2`/`3` files to a single file in `2and3`, as they were identical. - Maintains the comment header, as the stub is incomplete.
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:
|
|
...
|