summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2015-01-02 12:12:09 +0900
committerINADA Naoki <songofacandy@gmail.com>2015-01-02 12:12:09 +0900
commit593887025ea73acdd94fed93480011fb26e0aca8 (patch)
tree895ce5c0bdaa4103e525f508066ed952adc78e35
parent00f193ba08eb5995bc766c993252218b7e5478e4 (diff)
downloadmsgpack-python-593887025ea73acdd94fed93480011fb26e0aca8.tar.gz
Fix README reST
-rw-r--r--README.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index f99ed48..705ad75 100644
--- a/README.rst
+++ b/README.rst
@@ -110,7 +110,7 @@ msgpack provides ``dumps`` and ``loads`` as alias for compatibility with
>>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False)
(1, 2, 3)
-You should always pass the ``use_list`` keyword argument. See performance issues relating to use_list_ below.
+You should always pass the ``use_list`` keyword argument. See performance issues relating to `use_list option`_ below.
Read the docstring for other options.
@@ -237,8 +237,8 @@ CPython's GC starts when growing allocated object.
This means unpacking may cause useless GC.
You can use ``gc.disable()`` when unpacking large message.
-`use_list` option
-^^^^^^^^^^^^^^^^^^
+use_list option
+^^^^^^^^^^^^^^^^
List is the default sequence type of Python.
But tuple is lighter than list.
You can use ``use_list=False`` while unpacking when performance is important.