mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
Fix stdlib stubtest for latest Python patch releases (#13464)
This commit is contained in:
@@ -125,6 +125,9 @@ class Untokenizer:
|
||||
prev_col: int
|
||||
encoding: str | None
|
||||
def add_whitespace(self, start: _Position) -> None: ...
|
||||
if sys.version_info >= (3, 13):
|
||||
def add_backslash_continuation(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, 12):
|
||||
|
||||
Reference in New Issue
Block a user