mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
Remove extra alias.
This commit is contained in:
parent
a9483d860b
commit
8361fd8da6
1 changed files with 0 additions and 2 deletions
|
|
@ -168,7 +168,6 @@ def packb(object o, default=None, encoding='utf-8', unicode_errors='strict'):
|
|||
packer = Packer(default=default, encoding=encoding, unicode_errors=unicode_errors)
|
||||
return packer.pack(o)
|
||||
|
||||
dumps = packs = packb
|
||||
|
||||
cdef extern from "unpack.h":
|
||||
ctypedef struct msgpack_user:
|
||||
|
|
@ -239,7 +238,6 @@ def unpackb(object packed, object object_hook=None, object list_hook=None, bint
|
|||
else:
|
||||
return None
|
||||
|
||||
loads = unpacks = unpackb
|
||||
|
||||
def unpack(object stream, object object_hook=None, object list_hook=None, bint use_list=0, encoding=None, unicode_errors="strict"):
|
||||
"""unpack an object from stream."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue