-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Msgpack roundtrips python 3 strings to bytes #13945
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
Labels
Duplicate Report
Duplicate issue or pull request
Comments
duplicate of #13591 you are welcome to add this example there. |
further |
These are the public functions which
|
In the dask.distributed protocol we manage this by using the In [1]: import pandas as pd
In [2]: pd.msgpack.unpackb(pd.msgpack.packb("a"))
Out[2]: b'a'
In [3]: pd.msgpack.unpackb(pd.msgpack.packb(u"a", use_bin_type=True), encoding='
...: utf8')
Out[3]: 'a' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Possibly related to #13591. Causes dask/dask#1452
Code Sample, a copy-pastable example if possible
Expected Output
instead, we get
output of
pd.show_versions()
The text was updated successfully, but these errors were encountered: