@@ -34,19 +34,19 @@ I upload transitional package (msgpack-python 0.5 which depending on msgpack)
34
34
for smooth transition from msgpack-python to msgpack.
35
35
36
36
Sadly, this doesn't work for upgrade install. After `pip install -U msgpack-python `,
37
- msgpack is removed and `import msgpack ` fail.
37
+ msgpack is removed, and `import msgpack ` fail.
38
38
39
39
40
- Compatibility with old format
41
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
40
+ Compatibility with the old format
41
+ ^^^^^^^^^^^^^^^^^^^^^^---- ^^^^^^^
42
42
43
43
You can use ``use_bin_type=False `` option to pack ``bytes ``
44
- object into raw type in old msgpack spec, instead of bin type in new msgpack spec.
44
+ object into raw type in the old msgpack spec, instead of bin type in new msgpack spec.
45
45
46
- You can unpack old msgpack formatk using ``raw=True `` option.
46
+ You can unpack old msgpack format using ``raw=True `` option.
47
47
It unpacks str (raw) type in msgpack into Python bytes.
48
48
49
- See note in below for detail.
49
+ See note below for detail.
50
50
51
51
52
52
Install
@@ -67,7 +67,7 @@ But msgpack provides a pure Python implementation (``msgpack.fallback``)
67
67
for PyPy and Python 2.
68
68
69
69
Since the [pip](https://pip.pypa.io/) uses the pure Python implementation,
70
- Python 2 support will not be dropped in foreseeable feature .
70
+ Python 2 support will not be dropped in the foreseeable future .
71
71
72
72
73
73
Windows
0 commit comments