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
python-future provides future.types.newbytes which is meant to behave like the Python 3 bytes type in Python 2. However, fakeredis.to_bytes doesn't handle it correctly.
The text was updated successfully, but these errors were encountered:
It was previously being wrapped in bytes(), which ends up wrapping it in
b'...'. Things that match isinstance(x, bytes) are now returned as-is.
Fixes#199
python-future provides future.types.newbytes which is meant to behave like the Python 3 bytes type in Python 2. However,
fakeredis.to_bytes
doesn't handle it correctly.The text was updated successfully, but these errors were encountered: