From: Gregor <36135323+gege-hoho@users.noreply.github.com> Date: Thu, 18 Jul 2024 12:29:03 +0000 (+0200) Subject: gh-121657: Additional `yield from` error test using lambda (GH-121722) X-Git-Tag: v3.14.0a1~1074 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1056f2bc208bdfe562c79d2a5098723c50ae9c23;p=thirdparty%2FPython%2Fcpython.git gh-121657: Additional `yield from` error test using lambda (GH-121722) --- diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index 34f79dafbe98..3cb4d51fff1e 100644 --- a/Lib/test/test_generators.py +++ b/Lib/test/test_generators.py @@ -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): ...