Sign in
android
/
platform
/
external
/
python
/
pylint
/
612950b6eae36a543f4645d743f5fd02839c9788
/
.
/
tests
/
functional
/
y
/
yield_outside_func.py
blob: 5824bc0c7e635f93d9ad03e22e0984d784ffa7f5 [
file
] [
log
] [
blame
]
"""This is gramatically correct, but it's still a SyntaxError"""
yield
1
# [yield-outside-function]
LAMBDA_WITH_YIELD
=
lambda
:
(
yield
)