python/_brotli.c


Log

Author Commit Date CI Message
Eugene Kliuchnikov 79ea7296 2025-08-29T15:06:37 Merge branch 'master' into master
Evgenii Kliuchnikov 9a4ba593 2025-08-15T06:18:13 internal change PiperOrigin-RevId: 795452145
Domingo Dirutigliano 964ca075 2025-06-13T14:57:19 fix module import in set exception + setup.py compatible with python2
Domingo Dirutigliano ddb803ac 2025-06-13T14:13:12 using static function
Domingo Dirutigliano 998a28bd 2025-06-13T14:09:51 using module state for error handling
Domingo Dirutigliano e45f18cc 2025-03-15T11:23:32 DECREF on exception raise
Domingo Dirutigliano c710db05 2025-03-15T09:13:46 enabled support to 3.12 per GIL interpeter using multistage module inizialization
Robert Obryk eb3a31e2 2024-09-18T15:25:06 add max_length to Python streaming decompression
Robert Obryk 28ce91ca 2024-09-17T16:50:39 add size limit to buffer
Brotli d019271c 2025-01-06T03:05:20 Copybara import of the project: -- f1bdfaa803e62ce3608e0226c98da1cf20abebdc by Robert Obryk <robryk@google.com>: add size limit to buffer -- ef8922cee72a1c0b0c35ed109ae9d2d637177bfe by Robert Obryk <robryk@google.com>: add max_length to Python streaming decompression PiperOrigin-RevId: 712463460
Robert Obryk ef8922ce 2024-09-18T15:25:06 add max_length to Python streaming decompression
Robert Obryk f1bdfaa8 2024-09-17T16:50:39 add size limit to buffer
Ma Lin c8df4b30 2022-12-29T21:07:16 Python: use a new output buffer code (#902) Currently, the output buffer is a std::vector<uint8_t>. When the buffer grows, resizing will cause unnecessary memcpy(). This change uses a list of bytes object to represent output buffer, can avoid the extra overhead of resizing. In addition, C++ code can be removed, it's a pure C extension.