File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,3 +15,4 @@ msgpack/*.cpp
1515/tags
1616/docs /_build
1717.cache
18+ uv.lock
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ cdef class Unpacker:
222222 If specified, unpacker reads serialized data from it and `.feed()` is not usable.
223223
224224 :param int read_size:
225- Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`)
225+ Used as `file_like.read(read_size)`. Must be equal to or smaller than * max_buffer_size*.
226226
227227 :param bool use_list:
228228 If true, unpack msgpack array to Python list.
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ class Unpacker:
137137 If specified, unpacker reads serialized data from it and `.feed()` is not usable.
138138
139139 :param int read_size:
140- Used as `file_like.read(read_size)`. (default: `min(16*1024, max_buffer_size)`)
140+ Used as `file_like.read(read_size)`. Must be equal to or smaller than * max_buffer_size*.
141141
142142 :param bool use_list:
143143 If true, unpack msgpack array to Python list.
You can’t perform that action at this time.
0 commit comments