From adae702fc1d8fab898f1cd576c8c553bf01d4293 Mon Sep 17 00:00:00 2001 From: Emily Morehouse Date: Mon, 22 May 2017 15:48:14 -0700 Subject: [PATCH] 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. --- stdlib/{2 => 2and3}/pdb.pyi | 0 stdlib/3/pdb.pyi | 28 ---------------------------- 2 files changed, 28 deletions(-) rename stdlib/{2 => 2and3}/pdb.pyi (100%) delete mode 100644 stdlib/3/pdb.pyi diff --git a/stdlib/2/pdb.pyi b/stdlib/2and3/pdb.pyi similarity index 100% rename from stdlib/2/pdb.pyi rename to stdlib/2and3/pdb.pyi diff --git a/stdlib/3/pdb.pyi b/stdlib/3/pdb.pyi deleted file mode 100644 index 4df5ce6ab..000000000 --- a/stdlib/3/pdb.pyi +++ /dev/null @@ -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: - ...