Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
intentions
/
beforeYieldFrom.py
blob: b93f4b5550d7c759c0b3d584009411571a1b11c4 [
file
] [
log
] [
blame
]
def
f
(
g
):
yield
'begin'
for
x
in
g
():
yield
<
caret
>
x
print
(
'end'
)