Use PEP 570 syntax in third party stubs (#11554)

This commit is contained in:
Shantanu
2024-03-10 06:11:43 -07:00
committed by GitHub
parent f94bbfbcc4
commit 88fa182253
97 changed files with 625 additions and 632 deletions
@@ -8,7 +8,7 @@ _TwoIntSequence: TypeAlias = Sequence[int]
class _Kid(Protocol):
def toRaw(self) -> bytes: ...
def __str__(self, __indent: str = "") -> str: ...
def __str__(self, indent: str = "", /) -> str: ...
# Used by other types referenced in https://pyinstaller.org/en/stable/spec-files.html#spec-file-operation
class VSVersionInfo: