Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion peps/pep-0798.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ an additional alternative::
[*it for it in its] # list with the concatenation of iterables in 'its'
{*it for it in its} # set with the union of iterables in 'its'
{**d for d in dicts} # dict with the combination of dicts in 'dicts'
(*it for it in its) # generator of the concatenation of iterables in 'its' (*it for it in its)
(*it for it in its) # generator of the concatenation of iterables in 'its'

This proposal also extends to asynchronous comprehensions and generator
expressions, such that, for example, ``(*ait async for ait in aits())`` is
Expand Down