summaryrefslogtreecommitdiff
path: root/pylint/test
diff options
context:
space:
mode:
authorMichael Kefeder <oss@multiwave.ch>2015-11-19 17:20:05 +0100
committerMichael Kefeder <oss@multiwave.ch>2015-11-19 17:20:05 +0100
commit6f59c12b55765a3cc721864e8882f1e8e49bcb58 (patch)
treebfa517574e599f0cbb65a26bcbf59a36665cf164 /pylint/test
parent2fc6f58d5f5fb890f016283c66e7980fa79beac9 (diff)
downloadpylint-6f59c12b55765a3cc721864e8882f1e8e49bcb58.tar.gz
Ignore missing docstrings for decorated attribute setters and deleters
Closes issue #651.
Diffstat (limited to 'pylint/test')
-rw-r--r--pylint/test/functional/missing_docstring.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/pylint/test/functional/missing_docstring.py b/pylint/test/functional/missing_docstring.py
index 2392ebb..2d6f1fd 100644
--- a/pylint/test/functional/missing_docstring.py
+++ b/pylint/test/functional/missing_docstring.py
@@ -33,3 +33,22 @@ def __sizeof__():
def __mangled():
pass
+
+
+class Property(object):
+ """Don't warn about setters and deleters."""
+
+ def __init__(self):
+ self._value = None
+
+ @property
+ def test(self):
+ """Default docstring for setters and deleters."""
+
+ @test.setter
+ def test(self, value):
+ self._value = value
+
+ @test.deleter
+ def test(self):
+ pass