diff options
Diffstat (limited to 'msgpack')
-rw-r--r-- | msgpack/_msgpack.pyx | 2 |
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 |