-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Jelle Zijlstra <[email protected]>
- Loading branch information
1 parent
0e7365a
commit 1cc8080
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
version = "1.5.*" | ||
|
||
[tool.stubtest] | ||
ignore_missing_stub = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from _typeshed import ReadableBuffer | ||
|
||
class Error(Exception): ... | ||
|
||
def ZSTD_compress(__data: ReadableBuffer, __level: int = ..., __threads: int = ...) -> bytes: ... | ||
def ZSTD_external() -> int: ... | ||
def ZSTD_uncompress(__data: ReadableBuffer) -> bytes: ... | ||
def ZSTD_version() -> str: ... | ||
def ZSTD_version_number() -> int: ... | ||
def compress(__data: ReadableBuffer, __level: int = ..., __threads: int = ...) -> bytes: ... | ||
def decompress(__data: ReadableBuffer) -> bytes: ... | ||
def dumps(__data: ReadableBuffer, __level: int = ..., __threads: int = ...) -> bytes: ... | ||
def loads(__data: ReadableBuffer) -> bytes: ... | ||
def uncompress(__data: ReadableBuffer) -> bytes: ... | ||
def version() -> str: ... |