summaryrefslogtreecommitdiff
path: root/tests/functional/namedtuple_member_inference.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/namedtuple_member_inference.py')
-rw-r--r--tests/functional/namedtuple_member_inference.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/functional/namedtuple_member_inference.py b/tests/functional/namedtuple_member_inference.py
new file mode 100644
index 000000000..4488ceb0a
--- /dev/null
+++ b/tests/functional/namedtuple_member_inference.py
@@ -0,0 +1,22 @@
+"""Test namedtuple attributes.
+
+Regression test for:
+https://bitbucket.org/logilab/pylint/issue/93/pylint-crashes-on-namedtuple-attribute
+"""
+from __future__ import absolute_import, print_function
+from collections import namedtuple
+
+__revision__ = None
+
+Thing = namedtuple('Thing', ())
+
+Fantastic = namedtuple('Fantastic', ['foo'])
+
+def test():
+ """Test member access in named tuples."""
+ print(Thing.x) # [no-member]
+ fan = Fantastic(1)
+ print(fan.foo)
+ # Should not raise protected-access.
+ fan2 = fan._replace(foo=2)
+ print(fan2.foo)