summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Check return value of _end functions.INADA Naoki2012-12-221-3/+3
| |/
| * Add NULL check.INADA Naoki2012-12-221-0/+3
| |
| * Add test reproducing SEGVINADA Naoki2012-12-221-0/+19
| |
| * Don't use c++ on travis.0.2.3INADA Naoki2012-12-111-1/+1
| |
| * Add .travis.ymlINADA Naoki2012-12-111-0/+14
| |
| * prepare 0.2.3INADA Naoki2012-12-112-3/+3
| |
| * Update changelog for 0.2.3INADA Naoki2012-12-111-9/+1
| |
| * Fix tests.INADA Naoki2012-12-114-29/+39
| |
* | Merge pull request #38 from msgpack/travisINADA Naoki2012-12-111-7/+6
|\ \ | | | | | | Use tox on Travis.
| * | Use newer cython.INADA Naoki2012-12-111-3/+2
| | |
| * | Set PIP_USE_MIRRORS=true for faster venv creation.INADA Naoki2012-12-111-0/+3
| | |
| * | Install toxINADA Naoki2012-12-111-0/+1
| | |
| * | fix package nameINADA Naoki2012-12-111-1/+1
| | |
| * | Use tox on Travis.INADA Naoki2012-12-111-6/+2
|/ /
* | Add Python 3.3 to .travis.ymlINADA Naoki2012-12-111-0/+1
| |
* | Update .travis.ymlINADA Naoki2012-12-111-1/+2
| |
* | Split _msgpack.pyx (fix #34)INADA Naoki2012-12-116-261/+285
|\ \
| * | Update .gitignoreINADA Naoki2012-12-111-2/+1
| | |
| * | Split _msgpack.pyxINADA Naoki2012-12-115-382/+407
| | |
| * | remove unused importINADA Naoki2012-12-111-1/+0
| | |
| * | rename _msgpack.pyx => _packer.pyxINADA Naoki2012-12-113-3/+4
|/ /
* | Update changelog.INADA Naoki2012-12-101-0/+6
| |
* | Add `autoreset` option to Packer.INADA Naoki2012-12-102-12/+51
| |
* | Add `Packer.pack_pairs`.INADA Naoki2012-12-102-6/+44
| |
* | refactoring: remove pack_define.hINADA Naoki2012-12-102-27/+2
| |
* | Merge pull request #37 from msgpack/exceptionsINADA Naoki2012-12-105-18/+72
|\ \ | | | | | | Split exceptions
| * | Remove unused UnpackException.INADA Naoki2012-12-101-1/+0
| | |
| * | Improve docstring.INADA Naoki2012-12-101-8/+4
| | |
| * | `pack` raise MemoryError when realloc is failed.INADA Naoki2012-12-101-1/+3
| | |
| * | Improve docstrings.INADA Naoki2012-12-101-4/+23
| | |
| * | Add note for StopIteration => OutOfData.INADA Naoki2012-12-101-0/+6
| | |
| * | Split exceptions.INADA Naoki2012-12-104-13/+45
|/ /
* | Add NOTE for changing default value of use_list.INADA Naoki2012-12-073-3/+16
| |
* | Merge pull request #35 from jnothman/patch-1INADA Naoki2012-12-061-8/+7
|\ \ | | | | | | Fix README re default use_list=True
| * | Fix README re default use_list=Truejnothman2012-12-071-8/+7
| | |
* | | Merge pull request #36 from jnothman/patch-3INADA Naoki2012-12-061-0/+3
|\ \ \ | |/ / |/| | Warn about StopIteration in README
| * | Warn about StopIteration in READMEjnothman2012-12-071-0/+3
|/ /
* | Add note about use_list.INADA Naoki2012-12-061-0/+24
| |
* | Merge branch 'master' of github.com:msgpack/msgpack-pythonINADA Naoki2012-12-061-12/+47
|\ \
| * \ Merge pull request #33 from jnothman/readme-updatesINADA Naoki2012-12-061-12/+47
| |\ \ | | | | | | | | Readme updates
| | * | Mention CPython and MessagePack in READMEJoel Nothman2012-12-061-0/+7
| | | |
| | * | Brief mention of Unpacker.feed in READMEJoel Nothman2012-12-061-1/+1
| | | |
| | * | Minor grammar fixesJoel Nothman2012-12-061-3/+4
| | | |
| | * | README documentation of advanced Unpacker featuresJoel Nothman2012-12-061-0/+30
| | | |
| | * | Describe object_pairs_hook in READMEJoel Nothman2012-12-061-0/+3
| | | |
| | * | Change Unpacker example to read from streamJoel Nothman2012-12-061-9/+3
| | | |
* | | | Add Unpacker.read_bytes().INADA Naoki2012-12-062-0/+26
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | It reads from inner buffer without unpacking. Merge remote-tracking branch 'jnothman/patch-2' Conflicts: msgpack/_msgpack.pyx
| * | | Merge commit 'd5f9995' into read_bytesJoel Nothman2012-10-0416-142/+437
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: msgpack/_msgpack.pyx
| * | | | Cleaner read_bytes and a test caseJoel Nothman2012-09-232-7/+21
| | | | | | | | | | | | | | | | | | | | No longer reads via buffer for unbuffered bytes
| * | | | Expose packed stream with Unpacker.read_bytes()jnothman2012-09-211-0/+12
| | | | | | | | | | | | | | | At present, Unpacker buffers reading from the stream, meaning the stream can no longer be read directly. Unpacker.read_bytes(n) provides access to the underlying data, allowing content of known size to be read without unpacking.