summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge branch 'pr/82'INADA Naoki2014-02-172-1/+11
|\
| * fixINADA Naoki2014-02-171-5/+3
| |
| * fixINADA Naoki2014-02-171-1/+1
| |
| * fixed support of python3Sergey Zhuravlev2014-02-122-2/+5
| |
| * Added support of bytearrays to msgpack/fallback.pySergey Zhuravlev2013-12-152-0/+9
| |
* | Merge pull request #91 from msgpack/reduce-sixINADA Naoki2014-02-175-33/+29
|\ \ | | | | | | Reduce six usage
| * | Remove six completely.INADA Naoki2014-02-152-17/+14
| | |
| * | Remove six.b()INADA Naoki2014-02-151-5/+4
| | |
| * | six.BytesIO => io.BytesIOINADA Naoki2014-02-153-11/+11
|/ /
* | Merge pull request #89 from msgpack/better-travisINADA Naoki2014-02-153-10/+3
|\ \ | | | | | | travis: Simplify .travis.yml and add PyPy env.
| * | Remove too strict type check from test.INADA Naoki2014-02-141-1/+0
| | |
| * | travis: Simplify .travis.yml and add PyPy env.INADA Naoki2014-02-142-9/+3
|/ /
* | Merge pull request #88 from msgpack/fix-67INADA Naoki2014-02-133-20/+53
|\ \ | | | | | | Fix Unpacker doesn't increment refcnt.
| * | Unpacker: maintain refcnt (fix #67).INADA Naoki2014-02-131-1/+6
| | |
| * | Fix testINADA Naoki2014-02-131-2/+2
| | |
| * | Add refcount check.INADA Naoki2014-02-132-20/+29
| | |
| * | RenameINADA Naoki2014-02-131-0/+19
|/ /
* | Merge pull request #87 from msgpack/fix-83INADA Naoki2014-02-132-0/+29
|\ \ | | | | | | Feed data from file before _unpack()
| * | Feed data from file before _unpack()INADA Naoki2014-02-132-0/+29
|/ /
* | Fix warning on 64bit environment.INADA Naoki2014-02-131-1/+4
| |
* | Merge pull request #84 from wbolster/exception-type-cleanupsINADA Naoki2014-02-133-10/+10
|\ \ | | | | | | Always raise TypeError for wrong argument types
| * | Always raise TypeError for wrong argument typesWouter Bolsterlee2014-02-113-10/+10
| |/ | | | | | | | | | | | | The code that checks whether hooks are callable() (and some other type checks) should always raise TypeError on failure. Before this change, both ValueError and TypeError were used in an inconsistent way (C extension and Python implementation were not the same).
* | Merge pull request #85 from wbolster/fix-cython-warningsINADA Naoki2014-02-131-1/+2
|\ \ | |/ |/| Cosmetic changes to fix Cython warnings
| * Cosmetic changes to fix Cython warningsWouter Bolsterlee2014-02-111-1/+2
|/ | | | | | | | Put declarations on separate line to avoid warnings like this: Non-trivial type declarators in shared declaration (e.g. mix of pointers and values). Each pointer declaration should be on its own line.
* Update ChangeLogINADA Naoki2013-10-211-1/+15
|
* Document update.INADA Naoki2013-10-214-1/+7
|
* 0.4.00.4.0INADA Naoki2013-10-211-1/+1
|
* Merge pull request #79 from msgpack/newspecINADA Naoki2013-10-2014-207/+530
|\ | | | | [WIP] Newspec stage 2.
| * fix bugs.INADA Naoki2013-10-212-17/+5
| |
| * fallback: support packing ExtTypeINADA Naoki2013-10-213-81/+131
| |
| * Add tests and bugfix.INADA Naoki2013-10-213-5/+25
| |
| * Update README.INADA Naoki2013-10-211-3/+35
| |
| * Add ext_type example to README.INADA Naoki2013-10-201-4/+21
| |
| * cleanupINADA Naoki2013-10-203-4/+2
| |
| * Support unpacking new types.INADA Naoki2013-10-204-11/+17
| |
| * Packing ExtType and some cleanupINADA Naoki2013-10-207-170/+132
| |
| * fallback: Support pack_ext_type.INADA Naoki2013-10-204-23/+53
| |
| * Merge branch 'master' of https://github.com/antocuni/msgpack-python into newspecINADA Naoki2013-10-2011-41/+261
| |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: msgpack/fallback.py msgpack/unpack.h msgpack/unpack_define.h msgpack/unpack_template.h
| | * add a note in the READMEAntonio Cuni2013-10-191-0/+8
| | |
| | * implement unpacking of ext 8,16,32Antonio Cuni2013-10-192-14/+24
| | |
| | * implement unpacking for all the fixtext formatsAntonio Cuni2013-10-196-15/+62
| | |
| | * add a test for unpacking extended typesAntonio Cuni2013-10-191-0/+22
| | |
| | * implement unpack_one also for the cython version, and add a test for itAntonio Cuni2013-10-192-1/+32
| | |
| | * add the hook for unknown types also to the cython PackerAntonio Cuni2013-10-181-0/+6
| | |
| | * implement Packer.pack_extended_type also in the cython version of the codeAntonio Cuni2013-10-184-1/+69
| | |
| | * add support to unpack all ext formatsAntonio Cuni2013-10-181-1/+27
| | |
| | * automatically find the best format to encode extended typesAntonio Cuni2013-10-182-8/+38
| | |
| | * slightly change to APIAntonio Cuni2013-10-182-19/+14
| | |
| | * kill some duplicate code from unpack/unpackb and move the logic to ↵Antonio Cuni2013-10-182-51/+52
| | | | | | | | | | | | 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-152-47/+108
| | | | | | | | | | | | objects by subclassing Packer and Unpacker