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
__cmp__
comtypes
In Python3,
The cmp() function should be treated as gone, and the __cmp__() special method is no longer supported. https://docs.python.org/3/whatsnew/3.0.html#ordering-comparisons
cmp()
__cmp__()
However, they are still contained in comtypes.
comtypes/comtypes/client/lazybind.py
Lines 129 to 132 in afc6488
comtypes/comtypes/GUID.py
Lines 45 to 48 in afc6488
comtypes/comtypes/__init__.py
Lines 592 to 605 in afc6488
Remove these dead code and modernize the codebase.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In Python3,
However, they are still contained in
comtypes
.comtypes/comtypes/client/lazybind.py
Lines 129 to 132 in afc6488
comtypes/comtypes/GUID.py
Lines 45 to 48 in afc6488
comtypes/comtypes/__init__.py
Lines 592 to 605 in afc6488
Remove these dead code and modernize the codebase.
The text was updated successfully, but these errors were encountered: