third_party.pylibs.pylint.src/pylint/test/input/func_e0601.py
2015-02-14 18:13:20 +02:00

10 lines
167 B
Python

"""test local variable used before assignment
"""
from __future__ import print_function
__revision__ = 0
def function():
"""dummy"""
print(aaaa)
aaaa = 1