blob: 198a1033668816923057f9fe2c3f9ab5ec9458a8 (
plain)
1
2
3
4
5
6
|
"""This is grammatically correct, but it's still a SyntaxError"""
# pylint: disable=unnecessary-lambda-assignment
yield 1 # [yield-outside-function]
LAMBDA_WITH_YIELD = lambda: (yield)
|