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 | 6c6df1adaf4f2b202a6241a408538d05fb2ae430 (patch) | |
| tree | 1c8a00654d4a49230d772e78fe99f62bfe6e69b6 /python/msgpack/_msgpack.pyx | |
| parent | f91e1c17c0c22194b7a36aaa8290ec6f5e903e79 (diff) | |
| download | msgpack-python-6c6df1adaf4f2b202a6241a408538d05fb2ae430.tar.gz | |
should raise TypeError on find unsupported value
Diffstat (limited to 'python/msgpack/_msgpack.pyx')
| -rw-r--r-- | python/msgpack/_msgpack.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/msgpack/_msgpack.pyx b/python/msgpack/_msgpack.pyx index eb83c85..61ae36b 100644 --- a/python/msgpack/_msgpack.pyx +++ b/python/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 |
