mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-25 05:11:09 +08:00
fixed wrong return type in xxhash (#5378)
* fixed wrong return type in xxhash
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user