gh-121657: Additional `yield from` error test using lambda (GH-121722)

This commit is contained in:
Gregor 2024-07-18 14:29:03 +02:00 committed by GitHub
parent 3eacfc1a4d
commit 1056f2bc20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -2247,6 +2247,11 @@ Traceback (most recent call last):
...
SyntaxError: 'yield' outside function
>>> f=lambda: (yield from (1,2)), (yield from (3,4))
Traceback (most recent call last):
...
SyntaxError: 'yield from' outside function
>>> yield from [1,2]
Traceback (most recent call last):
...