cpython/Misc/NEWS.d/next/Core and Builtins/2017-11-22-15-43-14.bpo-321...

4 lines
193 B
ReStructuredText

Iterable unpacking is now allowed without parentheses in yield and return
statements, e.g. ``yield 1, 2, 3, *rest``. Thanks to David Cuthbert for the
change and Jordan Chapman for added tests.