File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ msgpack provides ``dumps`` and ``loads`` as alias for compatibility with
110110 >>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False)
111111 (1, 2, 3)
112112
113- You should always pass the ``use_list `` keyword argument. See performance issues relating to use_list _ below.
113+ You should always pass the ``use_list `` keyword argument. See performance issues relating to ` use_list option `_ below.
114114
115115Read the docstring for other options.
116116
@@ -237,8 +237,8 @@ CPython's GC starts when growing allocated object.
237237This means unpacking may cause useless GC.
238238You can use ``gc.disable() `` when unpacking large message.
239239
240- ` use_list ` option
241- ^^^^^^^^^^^^^^^^^^
240+ use_list option
241+ ^^^^^^^^^^^^^^^^
242242List is the default sequence type of Python.
243243But tuple is lighter than list.
244244You can use ``use_list=False `` while unpacking when performance is important.
You can’t perform that action at this time.
0 commit comments