Updates for Python 3.13.10 and 3.14.1 (#15105)

Closes #15104
This commit is contained in:
Sebastian Rittau
2025-12-04 20:19:06 +01:00
committed by GitHub
parent 5e3a96dcaa
commit e56ae65a49
27 changed files with 170 additions and 75 deletions
+2 -2
View File
@@ -201,8 +201,8 @@ class Pdb(Bdb, Cmd):
def completenames(self, text: str, line: str, begidx: int, endidx: int) -> list[str]: ... # type: ignore[override]
if sys.version_info >= (3, 12):
def set_convenience_variable(self, frame: FrameType, name: str, value: Any) -> None: ...
if sys.version_info >= (3, 13) and sys.version_info < (3, 14):
# Added in 3.13.8.
if sys.version_info >= (3, 13):
# Added in 3.13.8 and 3.14.1
@property
def rlcompleter(self) -> type[Completer]: ...