Files
typeshed/stdlib/2and3/pdb.pyi
Emily Morehouse adae702fc1 Moves pdb stub to 2and3 (#1294)
- 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.
2017-05-22 15:48:14 -07:00

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