python


Log

Author Commit Date CI Message
Cosimo Lupo 8c7edd3e 2015-08-11T10:39:14 [bro.py] print --version as brotli.__version__
Cosimo Lupo ac33d356 2015-08-11T10:42:22 [brotlimodule.cc] add __version__ string attribute to brotli module
Cosimo Lupo f1417290 2015-08-10T18:44:06 [brotlimodule.cc] fix RuntimeError on OS X: keyword list must be NULL terminated Sorry, my fault...
Cosimo Lupo 08212db7 2015-08-10T14:39:44 [brotlimodule.cc] fix C++11 warning about conversion from string literal to 'char *'
Cosimo Lupo d3dfc689 2015-08-10T14:38:17 [brotlimodule.cc] no longer expose deprecated BrotliParams: enable_dictionary, enable_transforms, greedy_block_split, enable_context_modeling
Cosimo Lupo e356b9bc 2015-05-11T14:12:37 [roundtrip_test.py] repeat test at different quality (1, 6, 9, 11)
Cosimo Lupo c93c0dab 2015-05-11T11:10:48 [bro.py] use brotli.MODE_GENERIC as default compression mode; remove additional low-level parameters
Cosimo Lupo aa6f7d8f 2015-05-11T11:09:36 [brotlimodule] add MODE_GENERIC constant
Cosimo Lupo b7e82917 2015-05-08T15:49:15 [bro.py] remove debug print
Cosimo Lupo 4106a406 2015-05-08T15:46:56 [bro.py] use new optional encoder parameters when compressing; modified the help string to include the new parameters.
Cosimo Lupo 32c44ec8 2015-05-08T14:17:20 [bro.py] use argparse instead of getopt
Cosimo Lupo 3351bb08 2015-05-08T13:02:05 [brotlimodule] apply uniform docstring style
Cosimo Lupo 6d935db7 2015-05-08T12:38:22 [brotlimodule] add quality, lgwin and lgblock parameters
Cosimo Lupo dbcb3261 2015-05-08T12:07:10 [brotlimodule] add enable_context_modeling parameter (defaults to True)
Cosimo Lupo 4c1d0693 2015-05-08T12:02:08 [brotlimodule] add new keyword params docstring of brotli.compress
Cosimo Lupo 6264bea2 2015-05-08T11:47:00 [brotlimodule] add greedy_block_split parameter (defaults to False); renamed variables: transform -> enable_transforms, dictionary -> enable_dictionary
Cosimo Lupo b2eba122 2015-05-08T11:34:20 [brotlimodule] add enable_dictionary parameter (defautls to True)
Cosimo Lupo 89c74d68 2015-05-08T11:23:08 [brotlimodule] use keyword arguments for mode and enable_transforms; update brotli.compress docstring accordingly
Cosimo Lupo e6913b2e 2015-05-08T10:06:18 [python] use built-in split instead of 'string' module for py23 In python3, the 'string' module no longer has a 'split' function.
Zoltan Szabadka 10a2f374 2015-05-07T20:43:01 Handle multiple compressed files per original in the test. Add some more test cases that decompress to the empty file or a one byte long file. These test cases have examples for the updated stream header and meta-block header formats.
Cosimo Lupo cdde52ef 2015-04-22T17:54:56 [python] refactored tests and import shared utilities from module
Cosimo Lupo 906f4f52 2015-04-22T16:49:00 [python] prepend build/lib folder to PYTHONPATH before running tests
Cosimo Lupo b316cb74 2015-04-16T12:41:40 [python] fix unbuffered binary mode for I/O streams in Windows pypy
Cosimo Lupo 77c23995 2015-03-31T09:30:56 [python] moved setup.py to the root of repository
Cosimo Lupo 4865fd1d 2015-03-30T10:20:50 [python] add test command to setup.py
Khaled Hosny fa7dd52d 2015-03-27T18:56:18 Fixing building Python module after 534654d
Cosimo Lupo 17866801 2015-03-23T12:09:42 [python] fix calling python script as subprocess on Windows
Cosimo Lupo 203fe326 2015-03-22T00:15:54 [python] fix subprocess shell pipeline
Cosimo Lupo 064d8e0b 2015-03-21T20:05:02 [python] add new state.c and state.h to Brotli extension's setup.py
szabadka 4836e87d 2015-03-16T20:35:19 Merge pull request #38 from anthrotype/py_tests add Python port of bro utility and scripts to test Brotli extension
szabadka e651c85f 2015-03-16T20:33:14 Merge pull request #37 from anthrotype/setup_py [python] setup.py fixes for Windows
Khaled Hosny e0c5df8c 2015-03-13T23:55:03 [python] Use BrotliDecompress() So that we can use a callback to dynamically allocate the decompression buffer, getting rid of the optional bufsize argument to decompress.decompress().
Cosimo Lupo b33e10e9 2015-03-16T17:56:10 add Python port of bro utility and scripts to test Brotli extension
Cosimo Lupo 3113fe71 2015-02-26T17:58:28 [setup.py] enable C++ exception handling on MSVC compiler to fix warning C4530
Cosimo Lupo dec72c59 2015-02-26T17:56:25 [setup.py] use "-std=c++0x" only with GCC compiler (usupported on MSVC)
Cosimo Lupo 855efcf7 2015-02-24T16:10:09 [python/setup.py] use relative paths instead of symlinks (unsupported on Win)
Khaled Hosny 11306237 2014-11-20T14:16:26 Add Python bindings