kc3-lang/brotli/python

Branch :


Log

Author Commit Date CI Message
c93c0dab 2015-05-11 11:10:48 [bro.py] use brotli.MODE_GENERIC as default compression mode; remove additional low-level parameters
aa6f7d8f 2015-05-11 11:09:36 [brotlimodule] add MODE_GENERIC constant
b7e82917 2015-05-08 15:49:15 [bro.py] remove debug print
4106a406 2015-05-08 15:46:56 [bro.py] use new optional encoder parameters when compressing; modified the help string to include the new parameters.
32c44ec8 2015-05-08 14:17:20 [bro.py] use argparse instead of getopt
3351bb08 2015-05-08 13:02:05 [brotlimodule] apply uniform docstring style
6d935db7 2015-05-08 12:38:22 [brotlimodule] add quality, lgwin and lgblock parameters
dbcb3261 2015-05-08 12:07:10 [brotlimodule] add enable_context_modeling parameter (defaults to True)
4c1d0693 2015-05-08 12:02:08 [brotlimodule] add new keyword params docstring of brotli.compress
6264bea2 2015-05-08 11:47:00 [brotlimodule] add greedy_block_split parameter (defaults to False); renamed variables: transform -> enable_transforms, dictionary -> enable_dictionary
b2eba122 2015-05-08 11:34:20 [brotlimodule] add enable_dictionary parameter (defautls to True)
89c74d68 2015-05-08 11:23:08 [brotlimodule] use keyword arguments for mode and enable_transforms; update brotli.compress docstring accordingly
e6913b2e 2015-05-08 10:06:18 [python] use built-in split instead of 'string' module for py23 In python3, the 'string' module no longer has a 'split' function.
10a2f374 2015-05-07 20: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.
cdde52ef 2015-04-22 17:54:56 [python] refactored tests and import shared utilities from module
906f4f52 2015-04-22 16:49:00 [python] prepend build/lib folder to PYTHONPATH before running tests
b316cb74 2015-04-16 12:41:40 [python] fix unbuffered binary mode for I/O streams in Windows pypy
77c23995 2015-03-31 09:30:56 [python] moved setup.py to the root of repository
4865fd1d 2015-03-30 10:20:50 [python] add test command to setup.py
fa7dd52d 2015-03-27 18:56:18 Fixing building Python module after 534654d
17866801 2015-03-23 12:09:42 [python] fix calling python script as subprocess on Windows
203fe326 2015-03-22 00:15:54 [python] fix subprocess shell pipeline
064d8e0b 2015-03-21 20:05:02 [python] add new state.c and state.h to Brotli extension's setup.py
4836e87d 2015-03-16 20:35:19 Merge pull request #38 from anthrotype/py_tests add Python port of bro utility and scripts to test Brotli extension
e651c85f 2015-03-16 20:33:14 Merge pull request #37 from anthrotype/setup_py [python] setup.py fixes for Windows
e0c5df8c 2015-03-13 23: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().
b33e10e9 2015-03-16 17:56:10 add Python port of bro utility and scripts to test Brotli extension
3113fe71 2015-02-26 17:58:28 [setup.py] enable C++ exception handling on MSVC compiler to fix warning C4530
dec72c59 2015-02-26 17:56:25 [setup.py] use "-std=c++0x" only with GCC compiler (usupported on MSVC)
855efcf7 2015-02-24 16:10:09 [python/setup.py] use relative paths instead of symlinks (unsupported on Win)
11306237 2014-11-20 14:16:26 Add Python bindings