We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I am the current maintainer of reedsolo.
We have recently pushed major updates which increase speed and stability, but the API had to be changed.
If you are still using reedsolo, please ensure that you handle the 3 variables returned by reedsolo.
Before:
>>> rsc = RSCodec(12) >>> tampered_msg = b'heXlo worXd\xed%T\xc4\xfdX\x89\xf3\xa8\xaa' >>> decoded_msg = rsc.decode(tampered_msg)
Now:
>>> rsc = RSCodec(10) >>> tampered_msg = b'heXlo worXd\xed%T\xc4\xfdX\x89\xf3\xa8\xaa' >>> rmes, rmesecc, errata_pos = rsc.decode(tampered_msg)
As an alternative, you can setup your requirements.txt to require reedsolo<=0.3 to avoid the need to update.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I am the current maintainer of reedsolo.
We have recently pushed major updates which increase speed and stability, but the API had to be changed.
If you are still using reedsolo, please ensure that you handle the 3 variables returned by reedsolo.
Before:
Now:
As an alternative, you can setup your requirements.txt to require reedsolo<=0.3 to avoid the need to update.
The text was updated successfully, but these errors were encountered: