diff options
author | INADA Naoki <songofacandy@gmail.com> | 2017-01-12 18:17:00 +0900 |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2017-01-12 18:17:00 +0900 |
commit | 2481c64cf162d765bfb84bf8e85f0e9861059cbc (patch) | |
tree | 3ff38e7c3d23bdfa02fb566d58fc466a6d5f0828 /msgpack/_unpacker.pyx | |
parent | 1cc3c574a20be224411a5a76a5863c9fa7a0381a (diff) | |
parent | e3fea94509767047a8ff45aa07cd58a9ba9694e7 (diff) | |
download | msgpack-python-2481c64cf162d765bfb84bf8e85f0e9861059cbc.tar.gz |
Merge branch 'release-0.4'
Diffstat (limited to 'msgpack/_unpacker.pyx')
-rw-r--r-- | msgpack/_unpacker.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/_unpacker.pyx b/msgpack/_unpacker.pyx index f6e06b0..a9801ee 100644 --- a/msgpack/_unpacker.pyx +++ b/msgpack/_unpacker.pyx @@ -272,7 +272,7 @@ cdef class Unpacker(object): :param int max_buffer_size: Limits size of data waiting unpacked. 0 means system's INT_MAX (default). Raises `BufferFull` exception when it is insufficient. - You shoud set this parameter when unpacking data from untrusted source. + You should set this parameter when unpacking data from untrusted source. :param int max_str_len: Limits max length of str. (default: 2**31-1) |