mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 15:50:49 +07:00
GitOrigin-RevId: caf60bd52a1872a2eb53f3617a6ffb51b195ff33
6 lines
97 B
Python
6 lines
97 B
Python
def foo(f):
|
|
for line in f:
|
|
print(line)
|
|
|
|
with open("file", "r") as as_target:
|
|
foo(<caret>) |