summaryrefslogtreecommitdiff
path: root/test/test_extension.py
Commit message (Collapse)AuthorAgeFilesLines
* blacken testInada Naoki2019-12-051-24/+31
|
* Remove pytest warningsInada Naoki2019-01-251-2/+8
|
* fix typos and other cosmetic issues (#214)release-0.4TW2017-01-111-1/+1
| | | | | | | cosmetic issues: - reST headlines' underline length needs to match the headline length (looks like somebody is / was using a proportional font) - Cython code lines do not need to be terminated with a semicolon - always use triple-double-quotes for docstrings
* Test to demonstrate that the default function isn't always called (#133)Pramukta Kumar2015-03-171-0/+19
|
* Packing ExtType and some cleanupINADA Naoki2013-10-201-41/+34
|
* fallback: Support pack_ext_type.INADA Naoki2013-10-201-13/+13
|
* implement unpacking for all the fixtext formatsAntonio Cuni2013-10-191-0/+1
|
* add a test for unpacking extended typesAntonio Cuni2013-10-191-0/+22
|
* implement Packer.pack_extended_type also in the cython version of the codeAntonio Cuni2013-10-181-1/+1
|
* automatically find the best format to encode extended typesAntonio Cuni2013-10-181-2/+16
|
* slightly change to APIAntonio Cuni2013-10-181-3/+4
|
* kill some duplicate code from unpack/unpackb and move the logic to ↵Antonio Cuni2013-10-181-3/+5
| | | | Unpacker.unpack_one. By doing this we no longer need to make the module-level pack/unpack parametric on the class, because they contain no logic at all
* add support for extended types: you can now pack/unpack custom python ↵Antonio Cuni2013-10-151-0/+24
objects by subclassing Packer and Unpacker