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
running unit test cases with Py3, failed due to a MD5 compare checking in context.py
The text was updated successfully, but these errors were encountered:
fix garnaat#73
c2a56d5
root cause of the issue: In Py3, passed in str (unicode format) and returned it in bytes type. detail: http://pythoncentral.io/encoding-and-decoding-strings-in-python-3-x/
fix: decode it back to str type in Py3, no impact in Py2
test and passed the unit test cases with both Py2 and Py3.4.1 (the fixing should be compatible with all Py3 versions)
Sorry, something went wrong.
I'll have tests run and then merge/release :)
No branches or pull requests
running unit test cases with Py3, failed due to a MD5 compare checking in context.py
The text was updated successfully, but these errors were encountered: