File tree Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Expand file tree Collapse file tree 3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 2
2
=====
3
3
:release date: in development
4
4
5
+ Inconpatible Changes
6
+ --------------------
7
+
8
+ * Default value of ``use_list `` is ``True `` for now. (It was ``False `` for 0.2.x)
9
+ You should pass it explicitly for compatibility to 0.2.x.
10
+
5
11
Changes
6
12
-------
7
13
* Add ``.skip() `` method to ``Unpacker `` (thanks to jnothman)
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ MessagePack Python Binding
3
3
===========================
4
4
5
5
:author: INADA Naoki
6
- :version: 0.2 .0
7
- :date: 2012-06-27
6
+ :version: 0.3 .0
7
+ :date: 2012-12-07
8
8
9
9
.. image :: https://secure.travis-ci.org/msgpack/msgpack-python.png
10
10
:target: https://travis-ci.org/#!/msgpack/msgpack-python
@@ -16,6 +16,13 @@ WHAT IT IS
16
16
similar data to JSON. This package provides CPython bindings for reading and
17
17
writing MessagePack data.
18
18
19
+ NOTE for msgpack 0.2.x users
20
+ ----------------------------
21
+
22
+ The default value of ``use_list `` keyword argument is ``True `` from 0.3.x.
23
+ You should pass the argument explicitly for backward compatibility.
24
+
25
+
19
26
HOW TO USE
20
27
-----------
21
28
847E
tr>
Original file line number Diff line number Diff line change @@ -327,7 +327,7 @@ cdef class Unpacker(object):
327
327
`read_size` is used as `file_like.read(read_size)`.
328
328
(default: min(1024**2, max_buffer_size))
329
329
330
- If `use_list` is true, msgpack list is deserialized to Python list.
330
+ If `use_list` is true (default) , msgpack list is deserialized to Python list.
331
331
Otherwise, it is deserialized to Python tuple.
332
332
333
333
`object_hook` is same to simplejson. If it is not None, it should be callable
You can’t perform that action at this time.
0 commit comments