index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
zlibmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-116322: Add Py_mod_gil module slot (#116882)
Brett Simmers
2024-05-03
1
-0/+1
*
gh-105967: Work around a macOS bug, limit zlib C library crc32 API calls to 1...
Gregory P. Smith
2023-12-04
1
-5/+13
*
gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)
Victor Stinner
2023-08-21
1
-0/+4
*
gh-107279 Add `<stddef.h>` to `Modules/zlibmodule.c` to fix failing builds (#...
shailshouryya
2023-07-27
1
-0/+1
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-10/+10
*
gh-86493: Modernize modules initialization code (GH-106858)
Serhiy Storchaka
2023-07-25
1
-25/+7
*
gh-104922: remove PY_SSIZE_T_CLEAN (#106315)
Inada Naoki
2023-07-02
1
-2/+0
*
Fix missing/incomplete NULL checks in multiple source files (#104564)
chgnrdv
2023-05-23
1
-0/+3
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-101322: Ensure test_zlib.ZlibDecompressorTest runs, fix errors in ZlibDeco...
Ruben Vorderman
2023-02-04
1
-0/+1
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99473)
Victor Stinner
2022-11-14
1
-35/+23
*
gh-90110: Update the C-analyzer Tool (gh-99307)
Eric Snow
2022-11-10
1
-1/+1
*
Remove unused arrange_output_buffer function from zlibmodule.c. (GH-98358)
Benjamin Peterson
2022-10-17
1
-16/+0
*
gh-95534: Improve gzip reading speed by 10% (#97664)
Ruben Vorderman
2022-10-17
1
-67/+571
*
bpo-38256: Fix binascii.crc32() when inputs are 4+GiB (GH-32000)
Gregory P. Smith
2022-03-20
1
-4/+4
*
bpo-47040: improve document of checksum functions (gh-31955)
Ma Lin
2022-03-19
1
-5/+3
*
bpo-41735: Fix thread lock in zlib.Decompress.flush() may go wrong (GH-29587)
Ma Lin
2021-11-27
1
-2/+3
*
Fix typos in the Modules directory (GH-28761)
Christian Clauss
2021-10-07
1
-1/+1
*
[codemod] Fix non-matching bracket pairs (GH-28473)
Mohamad Mansour
2021-09-21
1
-1/+1
*
bpo-43613: Faster implementation of gzip.compress and gzip.decompress (GH-27941)
Ruben Vorderman
2021-09-02
1
-3/+6
*
bpo-41486: zlib uses an UINT32_MAX sliding window for the output buffer (GH-2...
Ma Lin
2021-07-05
1
-30/+114
*
bpo-41486: Fix initial buffer size can't > UINT32_MAX in zlib module (GH-25738)
Ma Lin
2021-04-30
1
-39/+44
*
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland
2021-04-30
1
-10/+8
*
bpo-41486: Faster bz2/lzma/zlib via new output buffering (GH-21740)
Ma Lin
2021-04-28
1
-117/+168
*
Fix thread locks in zlib module may go wrong in rare case. (#22126)
Ma Lin
2021-04-27
1
-9/+10
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-1/+1
*
bpo-1635741 port zlib module to multi-phase init (GH-21995)
Mohamed Koubaa
2020-09-07
1
-157/+221
*
bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)
Serhiy Storchaka
2020-05-26
1
-37/+6
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-40268: Remove explicit pythread.h includes (#19529)
Victor Stinner
2020-04-15
1
-1/+0
*
bpo-39968: Convert extension modules' macros of get_module_state() to inline ...
Hai Shi
2020-03-16
1
-6/+13
*
bpo-38074: Make zlib extension module PEP-384 compatible (GH-15792)
Dino Viehland
2019-09-10
1
-73/+86
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-4/+4
*
bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...
Serhiy Storchaka
2019-02-25
1
-1/+3
*
bpo-35090: Fix potential division by zero in allocator wrappers (GH-10174)
Alexey Izbyshev
2018-10-28
1
-2/+2
*
bpo-25007: Add copy protocol support to zlib compressors and decompressors (G...
Zackery Spytz
2018-06-27
1
-0/+57
*
bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988)
Xiang Zhang
2018-03-07
1
-3/+18
*
bpo-31926: fix missing *_METHODDEF statements by argument clinic (#4230)
Tal Einat
2017-11-03
1
-4/+0
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-18/+7
*
bpo-9566: Fix some Windows x64 compiler warnings (#2492)
Segev Finer
2017-07-26
1
-2/+2
*
Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...
Christian Heimes
2016-09-13
1
-2/+2
*
Issue #16764: Support keyword arguments to zlib.decompress(). Patch by
Serhiy Storchaka
2016-08-15
1
-4/+4
*
Issue #27130: Merge zlib 64-bit fixes from 3.5
Martin Panter
2016-07-23
1
-387/+368
|
\
|
*
Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module
Martin Panter
2016-07-23
1
-387/+368
*
|
- Issue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka
2016-07-07
1
-12/+12
|
\
\
|
|
/
|
*
Issue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka
2016-07-07
1
-12/+12
*
|
Issue #26243: Only the level argument to zlib.compress() is keyword argument
Serhiy Storchaka
2016-06-25
1
-1/+2
*
|
Issue #27164: Merge raw Deflate zdict support from 3.5
Martin Panter
2016-06-05
1
-18/+44
|
\
\
|
|
/
|
*
Issue #27164: Allow decompressing raw Deflate streams with predefined zdict
Martin Panter
2016-06-05
1
-18/+44
*
|
Issue #5784: Merge zlib from 3.5
Martin Panter
2016-05-27
1
-7/+10
|
\
\
|
|
/
[next]