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.
1 parent 62361d1 commit e0fdd25Copy full SHA for e0fdd25
pylint/test/functional/class_members_py27.py
@@ -63,3 +63,8 @@ class MetaClass(object):
63
@classmethod
64
def whatever(cls):
65
return cls.mro() + cls.missing() # [no-member]
66
+
67
+from collections import namedtuple
68
69
+Tuple = namedtuple("Tuple", "field other")
70
+Tuple.field.__doc__ = "A doc for the field."
pylint/test/functional/class_members_py30.py
@@ -61,3 +61,8 @@ class MetaClass(object):
61
62
0 commit comments