diff options
author | Inada Naoki <songofacandy@gmail.com> | 2020-02-06 22:11:04 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 22:11:04 +0900 |
commit | 9d79351e99e435b8ca749d57a313441783f67133 (patch) | |
tree | 06d165456f90898aa74048ec86319213b35aff1f /msgpack/fallback.py | |
parent | ff1f5f89d997b40e60472c2820ea55cab752c779 (diff) | |
download | msgpack-python-9d79351e99e435b8ca749d57a313441783f67133.tar.gz |
Add some test for timestamp (#403)
Diffstat (limited to 'msgpack/fallback.py')
-rw-r--r-- | msgpack/fallback.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/msgpack/fallback.py b/msgpack/fallback.py index 263e74e..9f6665b 100644 --- a/msgpack/fallback.py +++ b/msgpack/fallback.py @@ -77,13 +77,7 @@ else: newlist_hint = lambda size: [] -from .exceptions import ( - BufferFull, - OutOfData, - ExtraData, - FormatError, - StackError, -) +from .exceptions import BufferFull, OutOfData, ExtraData, FormatError, StackError from .ext import ExtType, Timestamp |