mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
7 lines
134 B
Python
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
|