File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ To unpack it to list, Use ``use_list`` option.
3535 >>> msgpack.unpackb(b ' \x93\x01\x02\x03 ' , use_list = True )
3636 [1, 2, 3]
3737
38- Read docstring for other options.
38+ Read the docstring for other options.
3939
4040
4141streaming unpacking
4242^^^^^^^^^^^^^^^^^^^
4343
44- ``Unpacker `` is "streaming unpacker". It unpacks multiple objects from one
44+ ``Unpacker `` is a "streaming unpacker". It unpacks multiple objects from one
4545stream.
4646
4747::
@@ -59,10 +59,11 @@ stream.
5959 for unpacked in unpacker:
6060 print unpacked
6161
62+
6263packing/unpacking of custom data type
6364^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6465
65- Also possible to pack/unpack user's data types. Here is an example for
66+ It is also possible to pack/unpack custom data types. Here is an example for
6667``datetime.datetime ``.
6768
6869::
You can’t perform that action at this time.
0 commit comments