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
Originally reported by: Hexchain Tong (Bitbucket: hexchain, GitHub: hexchain)
In Python 2.7 the wraps cannot be used on @classmethods because it does not have the __module__ attribute.
wraps
@classmethod
__module__
In Python 3.5 it has a try/except around setattr so nonexistent attributes are ignored silently.
setattr
Should six.wraps behave consistently across these versions? Thanks.
six.wraps
The text was updated successfully, but these errors were encountered:
1988faf
No branches or pull requests
Originally reported by: Hexchain Tong (Bitbucket: hexchain, GitHub: hexchain)
In Python 2.7 the
wraps
cannot be used on@classmethod
s because it does not have the__module__
attribute.In Python 3.5 it has a try/except around
setattr
so nonexistent attributes are ignored silently.Should
six.wraps
behave consistently across these versions? Thanks.The text was updated successfully, but these errors were encountered: