diff options
author | Keiji Muraishi <keiji.muraishi@gmail.com> | 2010-03-31 17:29:07 +0900 |
---|---|---|
committer | Keiji Muraishi <keiji.muraishi@gmail.com> | 2010-03-31 17:29:07 +0900 |
commit | a50a83f073df4b3784d468d36d58111404505ffe (patch) | |
tree | 29a26f3987f2ddfdad4b67214de5efaf980bb973 /msgpack/_msgpack.pyx | |
parent | 0159084ce958aeb1ba7ffb74ded51a9e4c5bb457 (diff) | |
download | msgpack-python-a50a83f073df4b3784d468d36d58111404505ffe.tar.gz |
should raise TypeError on find unsupported value
Diffstat (limited to 'msgpack/_msgpack.pyx')
-rw-r--r-- | msgpack/_msgpack.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/_msgpack.pyx b/msgpack/_msgpack.pyx index eb83c85..61ae36b 100644 --- a/msgpack/_msgpack.pyx +++ b/msgpack/_msgpack.pyx @@ -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 |