Commit graph

100 commits

Author SHA1 Message Date
INADA Naoki
f6f9597249 Merge extension module
There were `_packer.so` and `_unpacker.so`.
But single module is simpler than double module.

Merge extension module into single `_msgpack.so`.
2018-11-08 20:27:35 +09:00
INADA Naoki
280d56eb9b rename _msgpack.pyx => _packer.pyx 2012-12-11 22:05:00 +09:00
INADA Naoki
4adc6f194d Add autoreset option to Packer. 2012-12-10 21:47:18 +09:00
INADA Naoki
537a2ab3f2 Add Packer.pack_pairs. 2012-12-10 21:26:41 +09:00
INADA Naoki
1c0fe10a2f Remove unused UnpackException. 2012-12-10 20:12:38 +09:00
INADA Naoki
30025c7ea0 Improve docstring. 2012-12-10 20:06:00 +09:00
INADA Naoki
ed40c671da pack raise MemoryError when realloc is failed. 2012-12-10 01:42:38 +09:00
INADA Naoki
4480227e06 Improve docstrings. 2012-12-10 00:39:04 +09:00
INADA Naoki
219d47503c Split exceptions. 2012-12-10 00:31:19 +09:00
INADA Naoki
dd5c76b955 Add NOTE for changing default value of use_list. 2012-12-07 11:35:16 +09:00
INADA Naoki
c1d15df87a Add Unpacker.read_bytes().
It reads from inner buffer without unpacking.

Merge remote-tracking branch 'jnothman/patch-2'

Conflicts:
	msgpack/_msgpack.pyx
2012-12-06 22:13:28 +09:00
INADA Naoki
54916f79a5 Merge pull request #23 from jnothman/write_bytes
Allow packed data to be captured while executing skip(), etc.
2012-12-06 01:49:58 -08:00
INADA Naoki
ec655b9f2c Fix segmentation fault. 2012-11-07 02:23:57 +09:00
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
Joel Nothman
df4f23779d Merge commit 'd5f9995' into read_bytes
Conflicts:
	msgpack/_msgpack.pyx
2012-10-04 11:31:40 +10:00
Joel Nothman
87f292cbf9 Allow packed data to be captured while executing skip(), etc. 2012-10-04 11:26:29 +10: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
e7c51d9089 Cleaner read_bytes and a test case
No longer reads via buffer for unbuffered bytes
2012-09-23 20:46:49 +10: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
jnothman
ffec10dff3 Expose packed stream with Unpacker.read_bytes()
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.
2012-09-21 16:03:41 +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