summaryrefslogtreecommitdiff
path: root/tests/functional/y/yield_from_outside_func.py
blob: 1c58af4295cbbfd9f89c64ba1f17e46973a2891c (plain)
1
2
3
4
5
6
"""This is grammatically correct, but it's still a SyntaxError"""
# pylint: disable=unnecessary-lambda-assignment

yield from [1, 2]  # [yield-outside-function]

LAMBDA_WITH_YIELD = lambda: (yield from [1, 2])