summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | A first implementation of Unpacker.skip()Joel Nothman2012-09-222-18/+31
| | |
* | | Add py33 to tox.INADA Naoki2012-09-231-1/+2
| | |
* | | Add Roadmap.INADA Naoki2012-09-231-0/+7
| | |
* | | pack and packb raises ValueError when extra data passed.INADA Naoki2012-09-231-2/+5
| | |
* | | Support packing subclass of dict.INADA Naoki2012-09-233-3/+50
| |/ |/|
* | 0.2.2 (again)0.2.2INADA Naoki2012-09-212-3/+1
| |
* | 0.2.2INADA Naoki2012-09-211-1/+1
| |
* | packb supports use_single_float option.INADA Naoki2012-09-213-3/+16
| |
* | Rename use_float to use_single_float.INADA Naoki2012-09-211-2/+2
| |
* | Merge branch 'master' of github.com:msgpack/msgpack-pythonINADA Naoki2012-09-211-4/+12
|\ \ | |/
| * Merge pull request #11 from TobiasSimon/float_extINADA Naoki2012-08-281-4/+12
| |\ | | | | | | added float serialization support
| | * added float serialization supportTobiasSimon2012-08-201-4/+12
| | |
* | | Fix reading more than read_size.INADA Naoki2012-09-211-17/+14
|/ /
* | Update changelogINADA Naoki2012-08-241-0/+10
| |
* | Stop disable/enable gc.INADA Naoki2012-08-241-11/+1
| | | | | | | | json and pickle modules don't stop gc. It's a very dirty hack.
* | Fix build from pyx doesn't work.INADA Naoki2012-08-211-2/+2
|/
* 0.2.10.2.1INADA Naoki2012-08-202-2/+5
|
* Change the way to manage version number.INADA Naoki2012-08-193-8/+3
|
* Fix build_ext doesn't work on Python 3.INADA Naoki2012-08-191-1/+1
|
* Use C++ compiler on win32.INADA Naoki2012-08-191-21/+48
|
* Fix on SPARC Solaris.INADA Naoki2012-08-191-5/+12
| | | | | Use C++ only on Windows. Define ENDIAN macros from `sys.byteorder`.
* Fix setup.py sdist doesn't generates c++ source.INADA Naoki2012-07-251-2/+3
|
* Default value of read_size is min(1024**2, max_buffer_size)INADA Naoki2012-07-201-3/+5
|
* raise ValueError when read_size > max_buffer_size.INADA Naoki2012-07-201-4/+5
|
* Add test for max_buffer_size.INADA Naoki2012-07-201-3/+17
|
* Add max_buffer_size to Unpacker.INADA Naoki2012-07-132-14/+73
|
* Start 0.2.1INADA Naoki2012-07-131-1/+1
|
* Fix using deprecated api in tests.INADA Naoki2012-07-045-29/+29
|
* Fix rst syntax.0.2.0INADA Naoki2012-06-271-1/+1
|
* release 0.2.0INADA Naoki2012-06-271-1/+1
|
* Use setuptools to build egg package.INADA Naoki2012-06-271-1/+1
|
* update .gitignoreINADA Naoki2012-06-271-0/+3
|
* remove deprecated api.INADA Naoki2012-06-272-11/+3
|
* prepare 0.2INADA Naoki2012-06-273-23/+70
|
* Fix setup scripts.INADA Naoki2012-06-262-2/+2
| | | | Support _msgpack.cpp
* manage to compile on windowsINADA Naoki2012-06-263-3/+4
| | | | Use C++ compiler to build.
* Update changelogINADA Naoki2012-06-261-0/+1
|
* Fix new version of msgpack.INADA Naoki2012-06-263-6/+14
|
* Update msgpack version.INADA Naoki2012-06-265-154/+369
|
* Start 0.1.14devINADA Naoki2012-06-192-1/+14
|
* Fix tests to pass.INADA Naoki2012-06-194-24/+26
|
* unify tests for py2 and py3INADA Naoki2012-06-1914-462/+85
|
* Add ".tox" to .gitignoreINADA Naoki2012-06-191-0/+1
|
* Add test for subtype.INADA Naoki2012-06-191-0/+27
|
* Start using toxINADA Naoki2012-06-191-0/+9
|
* Merge pull request #8 from steeve/patch-1INADA Naoki2012-06-181-1/+1
|\ | | | | Make sure objects inherited from Dict are properly casted
| * Make sure objects inherited from Dict are properly casted (or else Cython ↵Steeve Morin2012-06-161-1/+1
|/ | | | will complain and crash).
* release 0.1.130.1.13INADA Naoki2012-04-212-1/+22
|
* Merge branch 'master' of github.com:msgpack/msgpack-pythonINADA Naoki2012-03-081-2/+6
|\
| * Merge pull request #7 from steeve/patch-3methane2012-02-281-2/+6
| |\ | | | | | | Fix massive memory leak with object_hook and list_hook when unpacking.