summaryrefslogtreecommitdiffstats
path: root/Modules/zlibmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-116738: Make zlib module thread-safe (gh-142432)Alper2025-12-121-54/+79
* gh-76007: Deprecate `zlib.__version__` attribute (#140130)Stan Ulbrych2025-10-151-3/+22
* gh-139877: Use PyBytesWriter in pycore_blocks_output_buffer.h (#139976)Emma Smith2025-10-141-6/+6
* gh-129813, PEP 782: Use PyBytesWriter in lzma and zlib (#138832)Victor Stinner2025-09-131-10/+12
* gh-129813, PEP 782: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#138830)Victor Stinner2025-09-131-6/+2
* gh-116946: add `Py_TPFLAGS_IMMUTABLETYPE` to several internal types (#138582)Bénédikt Tran2025-09-111-0/+2
* GH-135763: AC: Use ``Py_ssize_t(allow_negative=False)`` (#138394)Adam Turner2025-09-021-12/+6
* gh-116946: fully implement GC protocol for `zlib` objects (#138290)Bénédikt Tran2025-09-011-19/+57
* gh-95534: Convert ``ZlibDecompressor.__new__`` to AC (#137923)Adam Turner2025-08-191-38/+29
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-181-2/+4
* gh-134635: add `zlib.{adler32,crc32}_combine` to combine checksums (#134650)Bénédikt Tran2025-05-271-0/+88
* gh-111178: Fix function signatures for multiple tests (#131496)Victor Stinner2025-03-201-1/+2
* gh-91349: Replace zlib with zlib-ng in Windows build (GH-131438)Steve Dower2025-03-191-0/+6
* gh-111178: fix UBSan failures in `Modules/zlibmodule.c` (GH-128252)Bénédikt Tran2025-01-031-5/+9
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)Victor Stinner2024-10-091-2/+2
* gh-121040: Use __attribute__((fallthrough)) (#121044)Victor Stinner2024-06-271-8/+8
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-105967: Work around a macOS bug, limit zlib C library crc32 API calls to 1...Gregory P. Smith2023-12-041-5/+13
* gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)Victor Stinner2023-08-211-0/+4
* gh-107279 Add `<stddef.h>` to `Modules/zlibmodule.c` to fix failing builds (#...shailshouryya2023-07-271-0/+1
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-10/+10
* gh-86493: Modernize modules initialization code (GH-106858)Serhiy Storchaka2023-07-251-25/+7
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-2/+0
* Fix missing/incomplete NULL checks in multiple source files (#104564)chgnrdv2023-05-231-0/+3
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-101322: Ensure test_zlib.ZlibDecompressorTest runs, fix errors in ZlibDeco...Ruben Vorderman2023-02-041-0/+1
* gh-99300: Use Py_NewRef() in Modules/ directory (#99473)Victor Stinner2022-11-141-35/+23
* gh-90110: Update the C-analyzer Tool (gh-99307)Eric Snow2022-11-101-1/+1
* Remove unused arrange_output_buffer function from zlibmodule.c. (GH-98358)Benjamin Peterson2022-10-171-16/+0
* gh-95534: Improve gzip reading speed by 10% (#97664)Ruben Vorderman2022-10-171-67/+571
* bpo-38256: Fix binascii.crc32() when inputs are 4+GiB (GH-32000)Gregory P. Smith2022-03-201-4/+4
* bpo-47040: improve document of checksum functions (gh-31955)Ma Lin2022-03-191-5/+3
* bpo-41735: Fix thread lock in zlib.Decompress.flush() may go wrong (GH-29587)Ma Lin2021-11-271-2/+3
* Fix typos in the Modules directory (GH-28761)Christian Clauss2021-10-071-1/+1
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-211-1/+1
* bpo-43613: Faster implementation of gzip.compress and gzip.decompress (GH-27941)Ruben Vorderman2021-09-021-3/+6
* bpo-41486: zlib uses an UINT32_MAX sliding window for the output buffer (GH-2...Ma Lin2021-07-051-30/+114
* bpo-41486: Fix initial buffer size can't > UINT32_MAX in zlib module (GH-25738)Ma Lin2021-04-301-39/+44
* bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)Erlend Egeberg Aasland2021-04-301-10/+8
* bpo-41486: Faster bz2/lzma/zlib via new output buffering (GH-21740)Ma Lin2021-04-281-117/+168
* Fix thread locks in zlib module may go wrong in rare case. (#22126)Ma Lin2021-04-271-9/+10
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-1/+1
* bpo-1635741 port zlib module to multi-phase init (GH-21995)Mohamed Koubaa2020-09-071-157/+221
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-261-37/+6
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-40268: Remove explicit pythread.h includes (#19529)Victor Stinner2020-04-151-1/+0
* bpo-39968: Convert extension modules' macros of get_module_state() to inline ...Hai Shi2020-03-161-6/+13
* bpo-38074: Make zlib extension module PEP-384 compatible (GH-15792)Dino Viehland2019-09-101-73/+86
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-4/+4
* bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...Serhiy Storchaka2019-02-251-1/+3