summaryrefslogtreecommitdiff
path: root/python
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
commit6c6df1adaf4f2b202a6241a408538d05fb2ae430 (patch)
tree1c8a00654d4a49230d772e78fe99f62bfe6e69b6 /python
parentf91e1c17c0c22194b7a36aaa8290ec6f5e903e79 (diff)
downloadmsgpack-python-6c6df1adaf4f2b202a6241a408538d05fb2ae430.tar.gz
should raise TypeError on find unsupported value
Diffstat (limited to 'python')
-rw-r--r--python/msgpack/_msgpack.pyx2
-rw-r--r--python/test/test_except.py14
2 files changed, 15 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
diff --git a/python/test/test_except.py b/python/test/test_except.py
new file mode 100644
index 0000000..574728f
--- /dev/null
+++ b/python/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()