Files
typeshed/stdlib/2/pdb.pyi
Emily Morehouse b6d08b81a3 #1286 Remove header comments from stubs (#1292)
- 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.
2017-05-22 15:14:15 -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:
...