third_party.pylibs.pylint.src/pylint/test/input/func_e0601.py

10 lines
167 B
Python
Raw Normal View History

2009-11-25 07:25:52 +00:00
"""test local variable used before assignment
2006-04-26 10:48:09 +00:00
"""
from __future__ import print_function
2006-04-26 10:48:09 +00:00
__revision__ = 0
def function():
"""dummy"""
print(aaaa)
2006-04-26 10:48:09 +00:00
aaaa = 1