summaryrefslogtreecommitdiff
path: root/msgpack/_msgpack.pyx
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2012-12-07 11:35:16 +0900
committerINADA Naoki <inada-n@klab.com>2012-12-07 11:35:16 +0900
commitdd5c76b9552e371503535ce10a0314151e62fa28 (patch)
tree2bb2054308110d6c5b799392540a26ac682f5c7f /msgpack/_msgpack.pyx
parentf8d7dea762290c1e61ff4365bcd7a374a09679d5 (diff)
downloadmsgpack-python-dd5c76b9552e371503535ce10a0314151e62fa28.tar.gz
Add NOTE for changing default value of use_list.
Diffstat (limited to 'msgpack/_msgpack.pyx')
-rw-r--r--msgpack/_msgpack.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/_msgpack.pyx b/msgpack/_msgpack.pyx
index 38940f0..5c202fc 100644
--- a/msgpack/_msgpack.pyx
+++ b/msgpack/_msgpack.pyx
@@ -327,7 +327,7 @@ cdef class Unpacker(object):
`read_size` is used as `file_like.read(read_size)`.
(default: min(1024**2, max_buffer_size))
- If `use_list` is true, msgpack list is deserialized to Python list.
+ If `use_list` is true (default), msgpack list is deserialized to Python list.
Otherwise, it is deserialized to Python tuple.
`object_hook` is same to simplejson. If it is not None, it should be callable