summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Fix compile errorINADA Naoki2015-11-091-1/+0
| | | |
* | | | Merge pull request #157 from methane/unpack-paramsINADA Naoki2015-11-091-2/+12
|\ \ \ \ | | | | | | | | | | Add missing params to unpack()
| * | | | Add missing params to unpack()INADA Naoki2015-11-091-2/+12
| | | | |
* | | | | Merge pull request #156 from methane/refactorINADA Naoki2015-11-093-37/+3
|\ \ \ \ \ | |/ / / / | | | | | refactor C code
| * | | | refactor C codeINADA Naoki2015-11-093-37/+3
|/ / / / | | | | | | | | | | | | fixes #137
* | | | Update ChangeLogINADA Naoki2015-11-091-0/+17
| | | |
* | | | readme: Fix markupINADA Naoki2015-11-091-2/+2
| | | |
* | | | Remove `msgpack 2.0` from READMEINADA Naoki2015-11-091-50/+59
| | | | | | | | | | | | | | | | There are no versio in spec.
* | | | Update gitignoreINADA Naoki2015-11-081-0/+3
| | | |
* | | | Update Windows compiler informationINADA Naoki2015-11-081-3/+7
| | | |
* | | | Drpo pypip.in badgeINADA Naoki2015-11-081-3/+0
| | | | | | | | | | | | | | | | It downs so long
* | | | Merge pull request #155 from methane/fix/152INADA Naoki2015-11-082-2/+7
|\ \ \ \ | | | | | | | | | | Decrease refcnt when error happend while unpacking
| * | | | Decrease refcnt when error happend while unpackingINADA Naoki2015-11-082-2/+7
|/ / / / | | | | | | | | | | | | Fixes #152
* | | | Merge pull request #153 from methane/fix/warningsINADA Naoki2015-11-074-26/+21
|\ \ \ \ | | | | | | | | | | fix compiler warnings
| * | | | Fix warningsINADA Naoki2015-11-073-18/+18
| | | | | | | | | | | | | | | | | | | | fixes #146
| * | | | Update travis settingINADA Naoki2015-11-071-8/+3
|/ / / /
* | | | executable setup.pyINADA Naoki2015-11-071-0/+0
| | | |
* | | | remove unused bat fileINADA Naoki2015-11-071-24/+0
| | | |
* | | | remove unused bat fileINADA Naoki2015-11-071-4/+0
| | | |
* | | | Merge pull request #151 from ThomasWaldmann/patch-1INADA Naoki2015-10-301-1/+1
|\ \ \ \ | |_|/ / |/| | | fix typo in setup.py
| * | | fix typo in setup.pyTW2015-10-301-1/+1
|/ / /
* | | Merge pull request #143 from emulbreh/pass-ext-hookINADA Naoki2015-08-241-2/+2
|\ \ \ | | | | | | | | Accept ext_hook for unpack()
| * | | Accept ext_hook for unpack()Johannes Dollinger2015-07-271-2/+2
|/ / /
* | | Merge pull request #136 from tbeu/patch-1INADA Naoki2015-03-231-1/+1
|\ \ \ | |/ / |/| | Update README.rst
| * | Update README.rsttbeu2015-03-221-1/+1
|/ / | | | | Fix typo
* | README: Update versionINADA Naoki2015-03-131-2/+2
| |
* | Merge pull request #128 from methane/travis/cython-0.22INADA Naoki2015-03-131-2/+6
|\ \ | | | | | | travis: Use cython 0.22
| * | travis: Build only mastertravis/cython-0.22INADA Naoki2015-03-131-0/+4
| | |
| * | travis: Cython 0.22INADA Naoki2015-03-131-2/+2
|/ /
* | 0.4.60.4.6INADA Naoki2015-03-132-1/+12
| |
* | fallback: Add some comment to Unpacker members.INADA Naoki2015-01-271-1/+8
| |
* | Merge pull request #125 from bwesterb/masterINADA Naoki2015-01-272-1/+16
|\ \ | | | | | | | | | | | | Rollback to correct position in the case of OutOfData. Fixes #124
| * | test_sequnpack: python3 literalsBas Westerbaan2015-01-261-6/+6
| | |
| * | Fix #124Bas Westerbaan2015-01-261-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using Unpacker as an iterator, after each yield, the internal buffer (_fb_buffer) was compacted by reallocation (done by _fb_consume). When dealing with a lot of small objects, this is very ineffecient. Thus in commit 7eb371f8278941fb2323e0c2333ed89c88ab822b the pure python fallback only reallocated the complete buffer when the iteration stops. When halfway there happens to be data missing in the buffer, we rollback the buffer to the state before this failed call, and raise an OutOfData. This rollback, done by _fb_rollback, did not consider the possibility that the buffer was *not* reallocated. This commit corrects that.
| * | Add test for issue #124Bas Westerbaan2015-01-261-0/+12
|/ /
* | update READMEINADA Naoki2015-01-261-2/+2
| |
* | 0.4.5INADA Naoki2015-01-263-8/+19
| |
* | Merge pull request #105 from msgpack/max-xxx-sizeINADA Naoki2015-01-256-53/+286
|\ \ | | | | | | Add max_<type>_len option to unpacker. (fixes #97).
| * | Fix error when use unicode_literal in Python 2INADA Naoki2015-01-253-6/+40
| | |
| * | Add max_<type>_len option to unpacker. (fixes #97).INADA Naoki2015-01-254-47/+246
|/ / | | | | | | Fix build error on 32bit environment (fixes #102).
* | Merge pull request #123 from ktdreyer/pytest-2.3-compatINADA Naoki2015-01-241-1/+1
|\ \ | | | | | | tests: add pytest 2.3 compatibility
| * | tests: add pytest 2.3 compatibilityKen Dreyer2015-01-231-1/+1
|/ / | | | | | | | | | | | | Adjust the skipif conditional to use the older pytest 2.3 syntax. (This allows the tests to pass with the system pytest package on RHEL 7.0, since RHEL 7.0 ships pytest 2.3.5.)
* | Merge branch 'master' of github.com:msgpack/msgpack-pythonINADA Naoki2015-01-141-5/+17
|\ \
| * \ Merge pull request #120 from msabramo/patch-2INADA Naoki2015-01-091-0/+4
| |\ \ | | | | | | | | README.rst: Add PyPI badge
| | * | README.rst: Add PyPI badgeMarc Abramowitz2015-01-081-0/+4
| |/ /
| * | Merge pull request #119 from msabramo/patch-1INADA Naoki2015-01-091-5/+13
| |\ \ | | | | | | | | README.rst: Add code-blocks
| | * | README.rst: Add code-blocksMarc Abramowitz2015-01-081-5/+13
| |/ / | | | | | | For syntax highlighting
* | | Fix typo in ChangeLog.INADA Naoki2015-01-141-6/+6
|/ / | | | | | | | | Fixes #121. Thanks @dmick
* | Update READMEINADA Naoki2015-01-091-2/+2
| |
* | 0.4.40.4.4INADA Naoki2015-01-091-1/+1
| |