ceoavinash/eef / __main__.cpython-314 (135).pyc
ceoavinash's picture
download
raw
1.08 kB
class UnpackException(Exception):
"""Base class for some exceptions raised while unpacking.
NOTE: unpack may raise exception other than subclass of
UnpackException. If you want to catch all error, catch
Exception instead.
"""
class BufferFull(UnpackException):
pass
class OutOfData(UnpackException):
pass
class FormatError(ValueError, UnpackException):
"""Invalid msgpack format"""
class StackError(ValueError, UnpackException):
"""Too nested"""
# Deprecated. Use ValueError instead
UnpackValueError = ValueError
class ExtraData(UnpackValueError):
"""ExtraData is raised when there is trailing data.
This exception is raised while only one-shot (not streaming)
unpack.
"""
def __init__(self, unpacked, extra):
self.unpacked = unpacked
self.extra = extra
def __str__(self):
return "unpack(b) received extra data."
# Deprecated. Use Exception instead to catch all exception during packing.
PackException = Exception
PackValueError = ValueError
PackOverflowError = OverflowError

Xet Storage Details

Size:
1.08 kB
·
Xet hash:
d3bbce86655ea4d91355cb484ac5a491f1a155ec0d11a04f75ba50dbe11d25ba

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.