You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bytes, bytearray and memoryview are being treated as absolutely directly msgpackable when, in fact, the msgspec decoder is not given bytes, bytearray and memoryview type hints and so is incapable of deserialising them. The decoder is not given such type hints because we already type hint strs and doing so prevents the other types from being decoded to, as described in this issue on the msgspec GitHub project.
The text was updated successfully, but these errors were encountered:
bytes
,bytearray
andmemoryview
are being treated as absolutely directly msgpackable when, in fact, themsgspec
decoder is not givenbytes
,bytearray
andmemoryview
type hints and so is incapable of deserialising them. The decoder is not given such type hints because we already type hintstr
s and doing so prevents the other types from being decoded to, as described in this issue on themsgspec
GitHub project.The text was updated successfully, but these errors were encountered: