mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-06 09:50:01 +00:00
should raise TypeError on find unsupported value
This commit is contained in:
parent
0159084ce9
commit
a50a83f073
2 changed files with 15 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
14
test/test_except.py
Normal file
14
test/test_except.py
Normal file
|
|
@ -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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue