Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use lists by default like msgspec, update to latest msgspec and msgpack releases #300

Merged
merged 9 commits into from
Feb 15, 2022
4 changes: 2 additions & 2 deletions tractor/_ipc.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ def raddr(self) -> Tuple[str, int]:


class MsgpackTCPStream:
'''A ``trio.SocketStream`` delivering ``msgpack`` formatted data
'''
A ``trio.SocketStream`` delivering ``msgpack`` formatted data
using ``msgpack-python``.

'''
Expand Down Expand Up @@ -124,7 +125,6 @@ async def _iter_packets(self) -> AsyncGenerator[dict, None]:
"""
unpacker = msgpack.Unpacker(
raw=False,
use_list=False,
strict_map_key=False
)
while True:
Expand Down