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 | |
| parent | 0159084ce958aeb1ba7ffb74ded51a9e4c5bb457 (diff) | |
| download | msgpack-python-a50a83f073df4b3784d468d36d58111404505ffe.tar.gz | |
should raise TypeError on find unsupported value
| -rw-r--r-- | msgpack/_msgpack.pyx | 2 | ||||
| -rw-r--r-- | test/test_except.py | 14 |
2 files changed, 15 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 diff --git a/test/test_except.py b/test/test_except.py new file mode 100644 index 0000000..574728f --- /dev/null +++ b/test/test_except.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python +# coding: utf-8 + +from nose.tools import * +from msgpack import packs, unpacks + +import datetime + +def test_raise_on_find_unsupported_value(): + assert_raises(TypeError, packs, datetime.datetime.now()) + +if __name__ == '__main__': + from nose import main + main() |
