summaryrefslogtreecommitdiff
path: root/tests/functional/u/undefined/undefined_variable_classes.py
blob: 364e249429c3fdf154132c48e3439e94fdf82e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Tests for undefined-variable related to classes"""
# pylint: disable=missing-function-docstring, missing-class-docstring, too-few-public-methods

# Test that list comprehensions in base classes are scoped correctly
# Regression reported in https://github.com/PyCQA/pylint/issues/3434

import collections

l = ["a", "b", "c"]


class Foo(collections.namedtuple("Foo", [x + "_foo" for x in l])):
    pass


# Test that class attributes are in scope for return type annotations.
# Regression reported in https://github.com/PyCQA/pylint/issues/1976
class MyObject:
    class MyType:
        pass

    def my_method(self) -> MyType:
        pass