------------------- * fix to compile on Windows with VS 2015, issue 72
0.9.1
------------------- * fix types to actually be types, 29 * check for ambiguous prefix codes when building binary tree for decoding * remove Python level methods: encode, decode, iterdecode (in favor of having these implemented on the C-level along with check_codedict) * fix self tests for Python 2.5 and 2.6 * move all Huffman code related example code into examples/huffman * add code to generate graphviz .dot file of Huffman tree to examples
0.9.0
------------------- * more efficient decode and iterdecode by using C-level binary tree instead of a python one, 54 * added buffer protocol support for Python 3, 55 * fixed invalid pointer exceptions in pypy, 47 * made all examples Py3k compatible * add gene sequence example * add official Python 3.7 support * drop Python 2.4, 3.1 and 3.2 support
0.8.3
------------------- * add exception to setup.py when README.rst cannot be opened
0.8.2
------------------- * add official Python 3.6 support (although it was already working) * fix description of `fill()`, 52 * handle extending self correctly, 28 * `copy_n()`: fast copy with `memmove()` fixed, 43 * minor clarity/wording changes to README, 23
0.8.1
------------------- * fix issue 10, i.e. `int(bitarray())` segfault * added tests for using a bitarray object as an argument to functions like int, long (on Python 2), float, list, tuple, dict