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
Bug Report
When I feed stubgen with a class with a deleter method of a property, it seems to ignore the decorator.
To Reproduce
class Foo: @property def bar(self)->int: return 42 @bar.setter def bar(self, int) -> None: pass @bar.deleter def bar(self) -> None: pass
Expected Behavior
class Foo: @property def bar(self) -> int: ... @bar.setter def bar(self, int) -> None: ... @bar.deleter def bar(self) -> None: ...
Actual Behavior
class Foo: @property def bar(self) -> int: ... @bar.setter def bar(self, int) -> None: ... def bar(self) -> None: ...
Your Environment
stubgen test.py
mypy.ini
The text was updated successfully, but these errors were encountered:
stubgen: Do not ignore property deleter (#16781)
75b68fa
Fixes #16690
Successfully merging a pull request may close this issue.
Bug Report
When I feed stubgen with a class with a deleter method of a property, it seems to ignore the decorator.
To Reproduce
Expected Behavior
Actual Behavior
Your Environment
stubgen test.py
mypy.ini
(and other config files): n/aThe text was updated successfully, but these errors were encountered: