fixed wrong return type in xxhash (#5378)

* fixed wrong return type in xxhash
This commit is contained in:
Mohit Goyani
2021-05-09 22:44:08 +05:30
committed by GitHub
parent 01ccf25d62
commit 23efb32c43

View File

@@ -20,17 +20,17 @@ class xxh3_64(_IntDigestHash): ...
class xxh3_128(_IntDigestHash): ...
def xxh32_digest(input: ReadableBuffer = ...) -> bytes: ...
def xxh32_intdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh32_hexdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh32_intdigest(input: ReadableBuffer = ...) -> int: ...
def xxh32_hexdigest(input: ReadableBuffer = ...) -> str: ...
def xxh64_digest(input: ReadableBuffer = ...) -> bytes: ...
def xxh64_intdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh64_hexdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh64_intdigest(input: ReadableBuffer = ...) -> int: ...
def xxh64_hexdigest(input: ReadableBuffer = ...) -> str: ...
def xxh3_64_digest(input: ReadableBuffer = ...) -> bytes: ...
def xxh3_64_intdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh3_64_hexdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh3_64_intdigest(input: ReadableBuffer = ...) -> int: ...
def xxh3_64_hexdigest(input: ReadableBuffer = ...) -> str: ...
def xxh3_128_digest(input: ReadableBuffer = ...) -> bytes: ...
def xxh3_128_intdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh3_128_hexdigest(input: ReadableBuffer = ...) -> bytes: ...
def xxh3_128_intdigest(input: ReadableBuffer = ...) -> int: ...
def xxh3_128_hexdigest(input: ReadableBuffer = ...) -> str: ...
xxh128 = xxh3_128
xxh128_digest = xxh3_128_digest