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
function patch_mysql
class hashabledict(dict): def __hash__(self): return hash(tuple(sorted(list(self.items()))))
Python 2 is OK, Maybe it is occured by the different version of Python to convert data structure.
The text was updated successfully, but these errors were encountered:
请问python3.6版本的解决了么?
Sorry, something went wrong.
return hash(tuple(self.items())) u can do it like this: in python3 dict is ordered.
No branches or pull requests
function patch_mysql
Python 2 is OK, Maybe it is occured by the different version of Python to convert data structure.
The text was updated successfully, but these errors were encountered: