summaryrefslogtreecommitdiff
path: root/test/input/func_noerror_defined_and_used_on_same_line_py27.py
blob: 11b1a2d3194ed3710fd6396979ce33dcf5d26fda (plain)
1
2
3
4
5
6
7
#pylint: disable=C0111,C0321
"""pylint complains about 'index' being used before definition"""

__revision__ = 1

with open('f') as f, open(f.read()) as g:
    print g.read()