Split _msgpack.pyx

This commit is contained in:
INADA Naoki 2012-12-11 22:15:21 +09:00
parent eec02b8729
commit b79e5ba4e5
5 changed files with 407 additions and 382 deletions

View file

@ -21,3 +21,9 @@ class ExtraData(ValueError):
def __str__(self):
return "unpack(b) recieved extra data."
class PackException(Exception):
pass
class PackValueError(PackException, ValueError):
pass