diff options
author | INADA Naoki <methane@users.noreply.github.com> | 2018-02-23 11:32:26 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-23 11:32:26 +0900 |
commit | 9455fccc5283abe59868c55ee3f4cedd5bf2d14b (patch) | |
tree | 3ad616bbba838c4c01e761dad4f5d6458e0e6b99 /msgpack/_unpacker.pyx | |
parent | 9bf38105f7dfd7e9885d8faee81c8bd188b4de4d (diff) | |
download | msgpack-python-9455fccc5283abe59868c55ee3f4cedd5bf2d14b.tar.gz |
Revert "Move unpack() from each implementation to __init__. (#286)"
This reverts commit da902f9c1d996fb461f1efef6487ef40d32d365a.
Diffstat (limited to 'msgpack/_unpacker.pyx')
-rw-r--r-- | msgpack/_unpacker.pyx | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/msgpack/_unpacker.pyx b/msgpack/_unpacker.pyx index 25a7401..fb58490 100644 --- a/msgpack/_unpacker.pyx +++ b/msgpack/_unpacker.pyx @@ -211,6 +211,32 @@ def unpackb(object packed, object object_hook=None, object list_hook=None, raise UnpackValueError("Unpack failed: error = %d" % (ret,)) +def unpack(object stream, object object_hook=None, object list_hook=None, + bint use_list=1, encoding=None, unicode_errors=None, + object_pairs_hook=None, ext_hook=ExtType, + Py_ssize_t max_str_len=2147483647, # 2**32-1 + Py_ssize_t max_bin_len=2147483647, + Py_ssize_t max_array_len=2147483647, + Py_ssize_t max_map_len=2147483647, + Py_ssize_t max_ext_len=2147483647): + """ + Unpack an object from `stream`. + + Raises `ValueError` when `stream` has extra bytes. + + See :class:`Unpacker` for options. + """ + return unpackb(stream.read(), use_list=use_list, + object_hook=object_hook, object_pairs_hook=object_pairs_hook, list_hook=list_hook, + encoding=encoding, unicode_errors=unicode_errors, ext_hook=ext_hook, + max_str_len=max_str_len, + max_bin_len=max_bin_len, + max_array_len=max_array_len, + max_map_len=max_map_len, + max_ext_len=max_ext_len, + ) + + cdef class Unpacker(object): """Streaming unpacker. |