Closed pylint-bot closed 8 years ago
Original comment by Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore):
That's true, thanks for the report.
Original comment by Michael Kefeder (BitBucket: multiwave, GitHub: @multiwave?):
One of our developers found that behaviour too, so I fixed it for him, see patch. I have no idea if that is the right way to do it, since it's first time of me looking into pylint source, but this quickhack works.
Original comment by Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore):
Thanks! I didn't notice the original patch, sorry about that. It will also need a couple of tests, in order to assure that we won't regress. Would you be willing to submit this as a pull request? If so and if you'll need guidance, just ask and I'll help.
Original comment by Michael Kefeder (BitBucket: multiwave, GitHub: @multiwave?):
reason for the attached patch (@claudiu that's mine, wasn't there before, you didn't overlook anything) was me being too lazy going full fork/branch/push on it ;) Alright pull request is submitted, I think I even connected it somehow to this Issue. Hope that helps.
Original comment by Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore):
Ignore missing docstrings for decorated attribute setters and deleters
Closes issue #651.
Original comment by Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore):
Ignore missing docstrings for decorated attribute setters and deleters
Closes issue #651.
Originally reported by: BitBucket: adrian_flanagan
Given the following file, which is based on an example in the python documentation:
pylint detects the following errors. However, It should recognize that a property is created, and not flag an error as long as there is a docstring on the getter method.