Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
intentions
/
afterYieldFrom.py
blob: 7c246bec7a4132e6317f734e4988f136e6f12e2e [
file
] [
log
] [
blame
]
def
f
(
g
):
yield
'begin'
yield
from
g
()
print
(
'end'
)