summaryrefslogtreecommitdiff
path: root/python/testData/mover/with.py
blob: ebf76d89986b4e60b49839b69f456ad048193bc1 (plain)
1
2
3
4
5
6
def temp(filepath):
    a = 1
    with open(filepath) as f:
        l = <caret>f.readlines()
        for line in l:
            a = 1