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
@@ -2,9 +2,7 @@
# TODO: New errors in Python 3.14 that need to be fixed or moved below
# ====================================================================
_zstd.ZstdCompressor.set_pledged_input_size
asyncio.tools
compression.zstd.ZstdCompressor.set_pledged_input_size
concurrent.interpreters
multiprocessing.managers.BaseListProxy.clear
multiprocessing.managers.BaseListProxy.copy
+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: ...