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
+9 -9
View File
@@ -1,9 +1,9 @@
def fingerprint128(__a: str) -> tuple[int, int]: ...
def fingerprint32(__a: str) -> int: ...
def fingerprint64(__a: str) -> int: ...
def hash128(__a: str) -> tuple[int, int]: ...
def hash128withseed(__a: str, __seed_low: int, __seed_high: int) -> tuple[int, int]: ...
def hash32(__a: str) -> int: ...
def hash32withseed(__a: str, __seed: int) -> int: ...
def hash64(__a: str) -> int: ...
def hash64withseed(__a: str, __seed: int) -> int: ...
def fingerprint128(a: str, /) -> tuple[int, int]: ...
def fingerprint32(a: str, /) -> int: ...
def fingerprint64(a: str, /) -> int: ...
def hash128(a: str, /) -> tuple[int, int]: ...
def hash128withseed(a: str, seed_low: int, seed_high: int, /) -> tuple[int, int]: ...
def hash32(a: str, /) -> int: ...
def hash32withseed(a: str, seed: int, /) -> int: ...
def hash64(a: str, /) -> int: ...
def hash64withseed(a: str, seed: int, /) -> int: ...