Commit graph

157 commits

Author SHA1 Message Date
INADA Naoki
812c8bcff4 Update msgpack version. 2012-06-26 13:21:10 +09:00
INADA Naoki
5b0353eac6 Start 0.1.14dev 2012-06-19 14:31:32 +09:00
INADA Naoki
636f4529aa Fix tests to pass. 2012-06-19 14:20:56 +09:00
INADA Naoki
0b38e86534 unify tests for py2 and py3 2012-06-19 13:55:14 +09:00
INADA Naoki
76f34667a0 Add ".tox" to .gitignore 2012-06-19 13:40:00 +09:00
INADA Naoki
f1dd03fe80 Add test for subtype. 2012-06-19 13:39:32 +09:00
INADA Naoki
40d4b8946b Start using tox 2012-06-19 13:39:23 +09:00
INADA Naoki
b95ea1467f Merge pull request #8 from steeve/patch-1
Make sure objects inherited from Dict are properly casted
2012-06-18 21:34:26 -07:00
Steeve Morin
07506667c9 Make sure objects inherited from Dict are properly casted (or else Cython will complain and crash). 2012-06-16 13:56:46 +03:00
INADA Naoki
7a4af28fa1 release 0.1.13 2012-04-21 14:25:07 +09:00
INADA Naoki
91a1abb737 Merge branch 'master' of github.com:msgpack/msgpack-python 2012-03-08 16:59:56 +09:00
INADA Naoki
64bdf6bcd6 small optimization. 2012-03-08 16:59:08 +09:00
methane
02f01f60fc Merge pull request #7 from steeve/patch-3
Fix massive memory leak with object_hook and list_hook when unpacking.
2012-02-28 08:19:29 -08:00
Steeve Morin
a5bc6b7385 Better prototypes. 2012-02-28 15:41:44 +01:00
Steeve Morin
31b7fda17b Fix massive memory leak with object_hook and list_hook when unpacking. 2012-02-28 15:36:58 +01:00
methane
3a472b1624 Merge pull request #6 from steeve/patch-2
Be greedier when checking for tuples or lists.
2012-02-16 11:01:25 -08:00
Steeve Morin
5b878b6038 Be greedier when checking for tuples or lists. 2012-02-16 17:15:04 +01:00
methane
c2e297d5dd Merge pull request #2 from urso/master
adopt setup.py to work with python older 2.7
2012-02-10 21:37:32 -08:00
methane
1485b998a4 Merge pull request #3 from wolever/patch-1
Correcting 'utf-8' to 'unicode'.
2012-02-10 21:36:18 -08:00
David Wolever
b764169775 Correcting 'utf-8' to 'unicode'. 2012-02-10 15:08:49 -05:00
Steffen Siering
d685614138 adopt setup.py to work with python installation older 2.7 2012-01-18 19:02:11 +01:00
INADA Naoki
ac713705eb 0.1.12: re-enable packs()/unpacks() aliases. 2011-12-27 21:34:40 +09:00
INADA Naoki
d2a23cc22a Release 0.1.11 2011-12-26 19:04:33 +09:00
INADA Naoki
b553754edf Fix compile error on MSVC. (davidgaleano) 2011-12-25 12:54:19 +09:00
INADA Naoki
1f829173cd add *.so to .gitignore 2011-12-25 12:48:36 +09:00
INADA Naoki
d72bd0c5d4 Remove unnecessary semicolon. 2011-09-02 16:22:21 +09:00
INADA Naoki
8312e986bf Update changelog 2011-09-02 16:20:01 +09:00
INADA Naoki
2c53c17979 Add test/ and test3/ to MANIFEST.in 2011-09-02 16:16:08 +09:00
INADA Naoki
938a124973 Use cython's embedsignature directive and enhance some docstrings. 2011-08-26 04:45:05 +09:00
INADA Naoki
5ed2288fed Add signature to docstring. 2011-08-22 03:41:24 +09:00
INADA Naoki
8361fd8da6 Remove extra alias. 2011-08-22 03:38:16 +09:00
INADA Naoki
a9483d860b Start 0.1.11a1.dev1 2011-08-22 03:37:14 +09:00
INADA Naoki
1a81f6364d 0.1.10 2011-08-22 02:09:51 +09:00
INADA Naoki
60762747b9 Fix error in tests. 2011-08-22 01:57:23 +09:00
tailhook
8c3c8a250b Fixed encoding argument for unpacker in Python 2011-08-22 01:52:45 +09:00
INADA Naoki
4a1ce19add Fix install command for Windows. 2011-08-21 19:29:33 +09:00
INADA Naoki
6bc62bd142 rename README to README.rst 2011-08-21 19:09:36 +09:00
INADA Naoki
cd75ba495a (python) Fix typo in ChangeLog 2011-06-24 00:04:43 +09:00
inada-n
ff594d71dd (python) make test pass with Python 2.5 2011-06-01 18:30:43 +09:00
INADA Naoki
3ffc75928b Revert "(python) Change error message for unicode is passed but no encoding is"
This reverts commit bd73742552.
2011-05-31 15:40:11 +09:00
INADA Naoki
36b0c2de41 (python) Change error message for unicode is passed but no encoding is
specified.
2011-05-31 14:10:46 +09:00
tailhook
752e3d1b78 Implemented encoding for strings
* 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
2011-04-15 18:39:17 +03:00
INADA Naoki
af7113bb31 python: Remove UnpackIterator. Unpacker is iterator of itself. 2011-01-30 10:45:39 +09:00
INADA Naoki
60d3ce3a18 python: Disable gc while deserializing. 2011-01-29 23:23:56 +09:00
INADA Naoki
3aaf5f5a7a python: Fix segmentation fault when default returns it's argument. 2011-01-29 23:22:41 +09:00
INADA Naoki
9e8261cbd9 python: 0.1.9 2011-01-29 07:31:06 +09:00
INADA Naoki
d0de96cacd python: refactoring. 2011-01-29 07:27:10 +09:00
INADA Naoki
77a97b9c16 Add use_list option to unpack and unpackb 2011-01-28 18:59:05 +09:00
INADA Naoki
b453385d92 python: Add memory error check. 2011-01-10 20:47:23 +09:00
INADA Naoki
47b0c273bb python: Check if (m|re)alloc's return value is NULL. (Thanks to Mateusz) 2011-01-10 05:07:07 +09:00