mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-15 16:27:08 +08:00
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:
committed by
Guido van Rossum
parent
54408054cc
commit
adae702fc1
@@ -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:
|
||||
...
|
||||
Reference in New Issue
Block a user