summaryrefslogtreecommitdiff
path: root/pylint/test/functional/confidence_filter.py
blob: b934c9d350b5b06b39e1715575d2e984fe7964c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""Test for the confidence filter."""
from __future__ import print_function

class Client(object):
    """use provider class"""

    def __init__(self):
        self.set_later = 0

    def set_set_later(self, value):
        """set set_later attribute (introduce an inference ambiguity)"""
        self.set_later = value

print(Client().set_later.lower())
print(Client().foo)  # [no-member]