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

@@ -125,7 +125,7 @@ class Untokenizer:
def add_whitespace(self, start: _Position) -> None: ...
def untokenize(self, iterable: Iterable[_Token]) -> str: ...
def compat(self, token: Sequence[int | str], iterable: Iterable[_Token]) -> None: ...
if sys.version_info >= (3, 13):
if sys.version_info >= (3, 12):
def escape_brackets(self, token: str) -> str: ...
# the docstring says "returns bytes" but is incorrect --