Commit graph

83 commits

Author SHA1 Message Date
INADA Naoki
0ef52869e3 Fix unpack error on Python 3.2.
ctx.user.encoding and ctx.user.unicode_errors may refer to deallocated string.
2012-11-07 02:00:08 +09:00
INADA Naoki
e016b3dca0 Merge remote-tracking branch 'jnothman/read_size_cpp'
Conflicts:
	msgpack/_msgpack.pyx
	setup.py
2012-10-01 01:31:58 +09:00
Joel Nothman
9d9c3eecb8 Packer.pack_array/map_header to correspond to read functions 2012-09-25 01:19:10 +10:00
Joel Nothman
0431a766f4 read_array/map_header functionality 2012-09-25 01:19:07 +10:00
Joel Nothman
d56e2b2c8a Use C++ function templating for skip()/construct() 2012-09-25 00:30:15 +10:00
INADA Naoki
1526316a08 Merge branch '0.2-maint'
Conflicts:
	msgpack/_msgpack.pyx
2012-09-24 03:10:37 +09:00
INADA Naoki
e381032641 Support object_pairs_hook
Merge remote-tracking branch 'jnothman/object_pairs_hook' into 0.2-maint
Conflicts:
	msgpack/_msgpack.pyx
	test/test_pack.py
	test/test_sequnpack.py
2012-09-24 03:05:39 +09:00
INADA Naoki
15a46eb143 use_list=1 is default 2012-09-24 02:42:38 +09:00
INADA Naoki
d503788e95 Warn when use_list is not specified.
Conflicts:
	test/test_sequnpack.py
2012-09-24 02:38:54 +09:00
INADA Naoki
60df5eadaf Warn when use_list is not specified. 2012-09-24 02:12:55 +09:00
Joel Nothman
77942514db Implement object_pairs_hook 2012-09-23 19:37:28 +10:00
Joel Nothman
b06ed8eb75 Factor context initialisation from unpackb and Unpacker 2012-09-23 19:36:27 +10:00
INADA Naoki
96ed236c1d Merge branch '0.2-maint' 2012-09-23 11:22:13 +09:00
INADA Naoki
c3da845868 Add docstring about raising ValueError when there are extra bytes. 2012-09-23 11:16:59 +09:00
INADA Naoki
48d693c1b9 Add test for .skip() 2012-09-23 10:09:51 +09:00
INADA Naoki
eaf9891b42 clean some cython code. 2012-09-23 10:00:18 +09:00
INADA Naoki
65f582345c Merge branch 'skip' of git://github.com/jnothman/msgpack-python into skip 2012-09-23 09:08:21 +09:00
INADA Naoki
8b2959bc0a pack and packb raises ValueError when extra data passed. 2012-09-23 03:39:14 +09:00
INADA Naoki
4d643894a1 Support packing subclass of dict. 2012-09-23 02:13:32 +09:00
Joel Nothman
032df6f2d9 Merge remote-tracking branch 'origin/master' into skip 2012-09-22 22:58:46 +10:00
Joel Nothman
28058fb53d A first implementation of Unpacker.skip() 2012-09-22 22:57:00 +10:00
INADA Naoki
51335bbee4 packb supports use_single_float option. 2012-09-21 14:15:30 +09:00
INADA Naoki
397d772e11 Rename use_float to use_single_float. 2012-09-21 14:08:34 +09:00
INADA Naoki
3b45a51d61 Merge branch 'master' of github.com:msgpack/msgpack-python 2012-09-21 13:59:35 +09:00
INADA Naoki
0297b36bda Fix reading more than read_size. 2012-09-21 13:58:56 +09:00
INADA Naoki
f14d926e1d Merge pull request #11 from TobiasSimon/float_ext
added float serialization support
2012-08-28 04:02:17 -07:00
INADA Naoki
235b928be7 Stop disable/enable gc.
json and pickle modules don't stop gc. It's a very dirty hack.
2012-08-24 09:53:18 +09:00
TobiasSimon
e63a943753 added float serialization support 2012-08-20 21:56:55 +02:00
INADA Naoki
59c8b51e5b Default value of read_size is min(1024**2, max_buffer_size) 2012-07-20 02:05:43 +09:00
INADA Naoki
53ca2bb648 raise ValueError when read_size > max_buffer_size. 2012-07-20 02:02:54 +09:00
INADA Naoki
7b1167044b Add max_buffer_size to Unpacker. 2012-07-13 21:28:16 +09:00
INADA Naoki
ebe4c1f4bc manage to compile on windows
Use C++ compiler to build.
2012-06-26 17:27:29 +09: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
64bdf6bcd6 small optimization. 2012-03-08 16:59:08 +09:00
Steeve Morin
5b878b6038 Be greedier when checking for tuples or lists. 2012-02-16 17:15:04 +01:00
David Wolever
b764169775 Correcting 'utf-8' to 'unicode'. 2012-02-10 15:08:49 -05:00
INADA Naoki
d72bd0c5d4 Remove unnecessary semicolon. 2011-09-02 16:22:21 +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
tailhook
8c3c8a250b Fixed encoding argument for unpacker in Python 2011-08-22 01:52:45 +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
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