summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2018-01-07 02:01:20 +0900
committerINADA Naoki <songofacandy@gmail.com>2018-01-07 02:01:20 +0900
commit35fc29797036b9bf8619b726f7c7b231c508439e (patch)
tree049a26862741bfac5210395c00a3bf159340d7f4
parent9f4c12f29ce7a6d62423311ab12a031dc79c458a (diff)
downloadmsgpack-python-35fc29797036b9bf8619b726f7c7b231c508439e.tar.gz
Update README
-rw-r--r--README.rst15
1 files changed, 2 insertions, 13 deletions
diff --git a/README.rst b/README.rst
index 20353f5..f5fd233 100644
--- a/README.rst
+++ b/README.rst
@@ -23,12 +23,12 @@ Install
::
- $ pip install msgpack-python
+ $ pip install msgpack
PyPy
^^^^
-msgpack-python provides a pure Python implementation. PyPy can use this.
+msgpack provides a pure Python implementation. PyPy can use this.
Windows
^^^^^^^
@@ -249,17 +249,6 @@ To use the **ext** type, pass ``msgpack.ExtType`` object to packer.
You can use it with ``default`` and ``ext_hook``. See below.
-Note for msgpack-python 0.2.x users
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The msgpack-python release 0.3 has some incompatible changes.
-
-The default value of ``use_list`` keyword argument is ``True`` from 0.3.
-You should pass the argument explicitly for backward compatibility.
-
-`Unpacker.unpack()` and some unpack methods now raises `OutOfData`
-instead of `StopIteration`.
-`StopIteration` is used for iterator protocol only.
Note about performance
----------------------