summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_nameerror_on_string_substitution.py
blob: be7b5c82a8fe77e757f97e80bb62bb730af4a3ff (plain)
1
2
3
4
5
6
7
8
"""pylint doesn't see the NameError in this module"""

__revision__ = None

MSG = "hello %s" % MSG

MSG2 = ("hello %s" %
        MSG2)