mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
should raise TypeError on find unsupported value
This commit is contained in:
parent
f91e1c17c0
commit
6c6df1adaf
2 changed files with 15 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ cdef class Packer(object):
|
|||
def __dealloc__(self):
|
||||
free(self.pk.buf);
|
||||
|
||||
cdef int __pack(self, object o):
|
||||
cdef int __pack(self, object o) except -1:
|
||||
cdef long long llval
|
||||
cdef unsigned long long ullval
|
||||
cdef long longval
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue