| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-112769: test_zlib: Fix comparison of ZLIB_RUNTIME_VERSION with non-int suf... | Miro Hrončok | 2023-12-05 | 1 | -12/+17 |
|
|
* | gh-110332: Remove mentions of `random.WichmannHill` from `test_zlib` (#110334) | Nikita Sobolev | 2023-10-04 | 1 | -12/+1 |
|
|
* | gh-109653: Remove unused imports in the `Lib/` directory (#109803) | Alex Waygood | 2023-09-24 | 1 | -1/+0 |
|
|
* | gh-108418: Speed up bigmem compression tests in dry mode (GH-108419) | Serhiy Storchaka | 2023-08-25 | 1 | -2/+2 |
|
|
* | GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFra... | Mark Shannon | 2023-08-04 | 1 | -5/+2 |
|
|
* | gh-101322: Ensure test_zlib.ZlibDecompressorTest runs, fix errors in ZlibDeco... | Ruben Vorderman | 2023-02-04 | 1 | -2/+7 |
|
|
* | gh-95534: Improve gzip reading speed by 10% (#97664) | Ruben Vorderman | 2022-10-17 | 1 | -0/+167 |
|
|
* | bpo-46623: Skip two test_zlib tests on s390x (GH-31096) | Victor Stinner | 2022-02-24 | 1 | -0/+32 |
|
|
* | bpo-43613: Faster implementation of gzip.compress and gzip.decompress (GH-27941) | Ruben Vorderman | 2021-09-02 | 1 | -0/+7 |
|
|
* | bpo-43988: Use check disallow instantiation helper (GH-26392) | Erlend Egeberg Aasland | 2021-05-27 | 1 | -4/+2 |
|
|
* | bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748) | Erlend Egeberg Aasland | 2021-04-30 | 1 | -0/+8 |
|
|
* | bpo-40275: Use new test.support helper submodules in tests (GH-21315) | Hai Shi | 2020-07-06 | 1 | -1/+3 |
|
|
* | bpo-40286: Use random.randbytes() in tests (GH-19575) | Victor Stinner | 2020-04-17 | 1 | -18/+2 |
|
|
* | bpo-36048: Use __index__() instead of __int__() for implicit conversion if av... | Serhiy Storchaka | 2019-02-25 | 1 | -1/+1 |
|
|
* | bpo-34582: Update syntax of Azure Pipelines builds (GH-9521) | Steve Dower | 2018-09-24 | 1 | -6/+17 |
|
|
* | bpo-25007: Add copy protocol support to zlib compressors and decompressors (G... | Zackery Spytz | 2018-06-27 | 1 | -24/+31 |
|
|
* | bpo-32969: Expose some missing constants in zlib and fix the doc (GH-5988) | Xiang Zhang | 2018-03-07 | 1 | -1/+2 |
|
|
* | bpo-32682: Improve libz version parsing in test_zilb (GH-5347) | pmp-p | 2018-02-19 | 1 | -4/+9 |
|
|
* | Replace KB unit with KiB (#4293) | Victor Stinner | 2017-11-08 | 1 | -2/+2 |
|
|
* | Issue #16764: Move NEWS entry to correct section and remove too strict test. | Serhiy Storchaka | 2016-08-18 | 1 | -4/+0 |
|
|
* | Issue #16764: Support keyword arguments to zlib.decompress(). Patch by | Serhiy Storchaka | 2016-08-15 | 1 | -4/+29 |
|
|
* | Issue #27130: Merge zlib 64-bit fixes from 3.5 | Martin Panter | 2016-07-23 | 1 | -16/+48 |
|\ |
|
| * | Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module | Martin Panter | 2016-07-23 | 1 | -16/+48 |
|
|
* | | Issue #26243: Only the level argument to zlib.compress() is keyword argument | Serhiy Storchaka | 2016-06-25 | 1 | -1/+3 |
|
|
* | | Issue #27164: Merge raw Deflate zdict support from 3.5 | Martin Panter | 2016-06-05 | 1 | -0/+9 |
|\ \
| |/ |
|
| * | Issue #27164: Allow decompressing raw Deflate streams with predefined zdict | Martin Panter | 2016-06-05 | 1 | -0/+9 |
|
|
* | | Issue #5784: Merge zlib from 3.5 | Martin Panter | 2016-05-27 | 1 | -2/+11 |
|\ \
| |/ |
|
| * | Issue #5784: wbits=0 apparently added in zlib v1.2.3.5 | Martin Panter | 2016-05-27 | 1 | -2/+11 |
|
|
* | | Issue #5784: Merge zlib from 3.5 | Martin Panter | 2016-05-27 | 1 | -0/+43 |
|\ \
| |/ |
|
| * | Issue #5784: Expand documentation and tests for zlib wbits parameter | Martin Panter | 2016-05-27 | 1 | -0/+43 |
|
|
* | | Issue #15984: Merge PyUnicode doc from 3.5 | Martin Panter | 2016-04-15 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
|
|
* | | Issue #26243: zlib.compress() keyword argument support by Aviv Palivoda | Martin Panter | 2016-02-10 | 1 | -0/+4 |
|/ |
|
* | Issue #22341: Drop Python 2 workaround and document CRC initial value | Martin Panter | 2015-12-11 | 1 | -9/+4 |
|
|
* | Issue #25626: Change zlib to accept Py_ssize_t and cap to UINT_MAX | Martin Panter | 2015-11-20 | 1 | -1/+55 |
|
|
* | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now | Serhiy Storchaka | 2015-11-12 | 1 | -0/+11 |
|\ |
|
| * | Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now | Serhiy Storchaka | 2015-11-12 | 1 | -0/+11 |
|
|
* | | Issue #23738: Merge 3.4 into 3.5 | Martin Panter | 2015-09-09 | 1 | -2/+6 |
|\ \
| |/ |
|
| * | Issue #23738: Document and test actual keyword parameter names | Martin Panter | 2015-09-09 | 1 | -2/+6 |
|
|
* | | Issue #21741: Update 147 test modules to use test discovery. | Zachary Ware | 2015-04-13 | 1 | -12/+1 |
|/ |
|
* | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -87/+96 |
|
|
* | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces... | Nadeem Vawda | 2012-11-11 | 1 | -0/+12 |
|\ |
|
| * | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces... | Nadeem Vawda | 2012-11-11 | 1 | -0/+12 |
|
|
* | | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco... | Nadeem Vawda | 2012-11-11 | 1 | -10/+22 |
|\ \
| |/ |
|
| * | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco... | Nadeem Vawda | 2012-11-11 | 1 | -9/+21 |
|
|
* | | Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal... | Nadeem Vawda | 2012-11-04 | 1 | -0/+14 |
|\ \
| |/ |
|
| * | Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal... | Nadeem Vawda | 2012-11-04 | 1 | -0/+13 |
|
|
| * | Issue #13873: Fix crash in test_zlib when running on a small (<4GB) tmpfs. | Nadeem Vawda | 2012-02-26 | 1 | -18/+5 |
|
|
* | | Tidy up comments from dd4f7d5c51c7 (zlib compression dictionary support). | Nadeem Vawda | 2012-06-21 | 1 | -7/+6 |
|
|
* | | Issue #14684: Add support for predefined compression dictionaries to the zlib... | Nadeem Vawda | 2012-06-21 | 1 | -0/+30 |
|
|