summaryrefslogtreecommitdiff
path: root/test/input/func_e0601.py
blob: 122ba0190bdf19bc9845750ce19445d15dcd6589 (plain)
1
2
3
4
5
6
7
8
9
"""test local variable used before assignment
"""
from __future__ import print_function
__revision__ = 0

def function():
    """dummy"""
    print(aaaa)
    aaaa = 1