Files
openide/python/testData/mover/with.py

7 lines
134 B
Python

def temp(filepath):
a = 1
with open(filepath) as f:
l = <caret>f.readlines()
for line in l:
a = 1