mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-121657: Additional yield from
error test using lambda (GH-121722)
This commit is contained in:
parent
3eacfc1a4d
commit
1056f2bc20
1 changed files with 5 additions and 0 deletions
|
@ -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):
|
||||
...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue