mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-22 21:33:17 +00:00
Cleanup code and pyproject (#608)
* use isort * fallback: use BytesIO instead of StringIO. We had dropped Python 2 already.
This commit is contained in:
parent
e0f0e145f1
commit
33e0e86f4e
21 changed files with 75 additions and 80 deletions
|
@ -1,12 +1,9 @@
|
|||
from io import BytesIO
|
||||
import sys
|
||||
from msgpack import Unpacker, packb, OutOfData, ExtType
|
||||
from pytest import raises, mark
|
||||
from io import BytesIO
|
||||
|
||||
try:
|
||||
from itertools import izip as zip
|
||||
except ImportError:
|
||||
pass
|
||||
from pytest import mark, raises
|
||||
|
||||
from msgpack import ExtType, OutOfData, Unpacker, packb
|
||||
|
||||
|
||||
def test_unpack_array_header_from_file():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue