8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Last version, using unpackb:
unpackb() got an unexpected keyword argument 'max_buffer_size'
From the docs:
msgpack.unpackb See Unpacker for options.
The reader follow the docs and goes to read Unpacker ...
max_str_len, max_bin_len : Deprecated, use max_buffer_size instead
Yes, max_buffer_size doesn't exist in the unpackb declaration. However, the documentation is confusing.
Solution
unpack should have its own argument description, without referring to another function with a different signature.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Last version, using unpackb:
From the docs:
The reader follow the docs and goes to read Unpacker ...
Yes, max_buffer_size doesn't exist in the unpackb declaration.
However, the documentation is confusing.
Solution
unpack should have its own argument description, without referring to another function with a different signature.
The text was updated successfully, but these errors were encountered: