Stubtest stdlib: unpin 3.11 and 3.12 micro versions (#12022)

This commit is contained in:
Alex Waygood
2024-05-23 16:24:28 -04:00
committed by GitHub
parent ffa0327845
commit ac6c61ba04
9 changed files with 99 additions and 49 deletions

View File

@@ -55,7 +55,9 @@ class Pdb(Bdb, Cmd):
) -> None: ...
def forget(self) -> None: ...
def setup(self, f: FrameType | None, tb: TracebackType | None) -> None: ...
def execRcLines(self) -> None: ...
if sys.version_info < (3, 11):
def execRcLines(self) -> None: ...
def bp_commands(self, frame: FrameType) -> bool: ...
def interaction(self, frame: FrameType | None, traceback: TracebackType | None) -> None: ...
def displayhook(self, obj: object) -> None: ...