[issue43612] zlib.compress should have a wbits argument

2021-09-03 Thread Ruben Vorderman
Ruben Vorderman added the comment: Thanks for the review, Lukasz! It was fun to create the PR and optimize the performance for gzip.py as well. -- ___ Python tracker ___

[issue43612] zlib.compress should have a wbits argument

2021-09-02 Thread Łukasz Langa
Change by Łukasz Langa : -- versions: -Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue43612] zlib.compress should have a wbits argument

2021-09-02 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for your contribution, Ruben! ✨ 🍰 ✨ -- nosy: +lukasz.langa resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue43612] zlib.compress should have a wbits argument

2021-08-25 Thread Ruben Vorderman
Change by Ruben Vorderman : -- pull_requests: +26387 pull_request: https://github.com/python/cpython/pull/27941 ___ Python tracker ___ _

[issue43612] zlib.compress should have a wbits argument

2021-04-26 Thread Ruben Vorderman
Ruben Vorderman added the comment: A patch was created, but has not been reviewed yet. -- ___ Python tracker ___ ___ Python-bugs-li

[issue43612] zlib.compress should have a wbits argument

2021-04-26 Thread Ruben Vorderman
Change by Ruben Vorderman : -- versions: +Python 3.11 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue43612] zlib.compress should have a wbits argument

2021-03-25 Thread Ruben Vorderman
Change by Ruben Vorderman : -- components: +Extension Modules -Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue43612] zlib.compress should have a wbits argument

2021-03-24 Thread Ruben Vorderman
Change by Ruben Vorderman : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue43612] zlib.compress should have a wbits argument

2021-03-24 Thread Ruben Vorderman
Change by Ruben Vorderman : -- keywords: +patch pull_requests: +23768 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25011 ___ Python tracker ___

[issue43612] zlib.compress should have a wbits argument

2021-03-23 Thread Ruben Vorderman
New submission from Ruben Vorderman : zlib.compress can now only be used to output zlib blocks. Arguably `zlib.compress(my_data, level, wbits=-15)` is even more useful as it gives you a raw deflate block. That is quite interesting if you are writing your own file format and want to use compres