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.
This commit is contained in:
Emily Morehouse
2017-05-22 15:48:14 -07:00
committed by Guido van Rossum
parent 54408054cc
commit adae702fc1
2 changed files with 0 additions and 28 deletions

View File

@@ -1,28 +0,0 @@
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:
...