Skip to content

Commit 68a9b0a

Browse files
mattrobmattrobsrittau
authored andcommitted
Add Restart to pdb.pyi (#2805)
Add `Restart` class to `pdb.pyi`, which has no internal implementation.
1 parent 306b469 commit 68a9b0a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/2and3/pdb.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import sys
44
from typing import Any, Dict, Optional
55

6+
class Restart(Exception): ...
7+
68
def run(statement: str, globals: Optional[Dict[str, Any]] = ...,
79
locals: Optional[Dict[str, Any]] = ...) -> None: ...
810
def runeval(expression: str, globals: Optional[Dict[str, Any]] = ...,

0 commit comments

Comments
 (0)