summaryrefslogtreecommitdiff
path: root/test/test_pack.py
Commit message (Collapse)AuthorAgeFilesLines
* Add some test for timestamp (#403)Inada Naoki2020-02-061-11/+3
|
* Make strict_map_key default to True (#392)Inada Naoki2019-12-061-3/+3
|
* blacken testInada Naoki2019-12-051-25/+77
|
* Ressurect unicode_errors of the Packer. (#379)Inada Naoki2019-12-031-2/+14
|
* Remove encoding/unicode_errors options from Packer (#378)Inada Naoki2019-12-031-30/+0
|
* Remove pytest warningsInada Naoki2019-01-251-8/+15
|
* Add Packer.buffer() (#320)INADA Naoki2018-11-091-1/+11
|
* s/raw_as_bytes/raw/g (#276)INADA Naoki2018-01-121-4/+4
| | | fixes #273
* Add raw_as_bytes option to Unpacker. (#265)INADA Naoki2018-01-111-13/+9
|
* Remove code and tests for unsupported Python 2.6 (#250)Hugo2017-10-121-16/+2
|
* Packer accepts bytearray objects (#229)jfolz2017-05-181-0/+7
|
* 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
* Remove six completely.INADA Naoki2014-02-151-16/+14
|
* six.BytesIO => io.BytesIOINADA Naoki2014-02-151-3/+3
|
* Remove too strict type check from test.INADA Naoki2014-02-141-1/+0
|
* more testsYAMAMOTO Takashi2013-06-031-2/+3
|
* Fix minor bugs and tuning unpacking dict.INADA Naoki2013-02-031-1/+1
|
* Use py.test instead of nosetests.INADA Naoki2012-12-291-27/+20
|
* Add `autoreset` option to Packer.INADA Naoki2012-12-101-0/+15
|
* Add `Packer.pack_pairs`.INADA Naoki2012-12-101-2/+9
|
* Fix some test failure.INADA Naoki2012-10-011-3/+3
|
* Merge remote-tracking branch 'jnothman/read_size_cpp'INADA Naoki2012-10-011-0/+29
|\ | | | | | | | | | | Conflicts: msgpack/_msgpack.pyx setup.py
| * Packer.pack_array/map_header to correspond to read functionsJoel Nothman2012-09-251-0/+29
| |
* | Fix warnings.INADA Naoki2012-09-241-1/+1
| |
* | Support object_pairs_hookINADA Naoki2012-09-241-4/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | Merge remote-tracking branch 'jnothman/object_pairs_hook' into 0.2-maint Conflicts: msgpack/_msgpack.pyx test/test_pack.py test/test_sequnpack.py
| * | Implement object_pairs_hookJoel Nothman2012-09-231-4/+3
| |/
* | Fix warnings in tests.INADA Naoki2012-09-241-8/+7
| |
* | Warn when use_list is not specified.INADA Naoki2012-09-241-6/+6
|/ | | | | Conflicts: test/test_sequnpack.py
* Support packing subclass of dict.INADA Naoki2012-09-231-0/+26
|
* packb supports use_single_float option.INADA Naoki2012-09-211-0/+5
|
* Fix using deprecated api in tests.INADA Naoki2012-07-041-10/+10
|
* Fix tests to pass.INADA Naoki2012-06-191-6/+10
|
* unify tests for py2 and py3INADA Naoki2012-06-191-18/+16
|
* Fix error in tests.INADA Naoki2011-08-221-1/+1
|
* Fixed `encoding` argument for unpacker in Pythontailhook2011-08-221-0/+6
|
* (python) make test pass with Python 2.5inada-n2011-06-011-14/+19
|
* Implemented encoding for stringstailhook2011-04-151-4/+53
| | | | | | | | | * Packer by default uses `utf-8` encoding by default * Unpacker uses `None` by default, so no decoding is done * Both pack and unpack has `encoding` and `unicode_errors` arguments, if `encoding` is `None` no encoding/decoding is done, otherwise it is python codec. `unicode_errors` is supplied as `errors` parameter to codec
* Fix tests.Naoki INADA2009-12-171-1/+1
|
* Add some test cases.Naoki INADA2009-06-291-0/+28