Update _zstd stubs for 3.14.0b3 (#14306)

This commit is contained in:
Brian Schubert
2025-06-21 13:40:34 -04:00
committed by GitHub
parent b98b6c376b
commit 3419bc5407
2 changed files with 1 additions and 2 deletions
+1
View File
@@ -52,6 +52,7 @@ class ZstdCompressor:
self, /, data: ReadableBuffer, mode: _ZstdCompressorContinue | _ZstdCompressorFlushBlock | _ZstdCompressorFlushFrame = 0
) -> bytes: ...
def flush(self, /, mode: _ZstdCompressorFlushBlock | _ZstdCompressorFlushFrame = 2) -> bytes: ...
def set_pledged_input_size(self, size: int | None, /) -> None: ...
@property
def last_mode(self) -> _ZstdCompressorContinue | _ZstdCompressorFlushBlock | _ZstdCompressorFlushFrame: ...