summaryrefslogtreecommitdiff
path: root/msgpack/_msgpack.pyx
diff options
context:
space:
mode:
authorKeiji Muraishi <keiji.muraishi@gmail.com>2010-03-31 17:29:07 +0900
committerKeiji Muraishi <keiji.muraishi@gmail.com>2010-03-31 17:29:07 +0900
commita50a83f073df4b3784d468d36d58111404505ffe (patch)
tree29a26f3987f2ddfdad4b67214de5efaf980bb973 /msgpack/_msgpack.pyx
parent0159084ce958aeb1ba7ffb74ded51a9e4c5bb457 (diff)
downloadmsgpack-python-a50a83f073df4b3784d468d36d58111404505ffe.tar.gz
should raise TypeError on find unsupported value
Diffstat (limited to 'msgpack/_msgpack.pyx')
-rw-r--r--msgpack/_msgpack.pyx2
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