We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54ab504 commit fccb504Copy full SHA for fccb504
1 file changed
peps/pep-0798.rst
@@ -88,7 +88,7 @@ an additional alternative::
88
[*it for it in its] # list with the concatenation of iterables in 'its'
89
{*it for it in its} # set with the union of iterables in 'its'
90
{**d for d in dicts} # dict with the combination of dicts in 'dicts'
91
- (*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'
92
93
This proposal also extends to asynchronous comprehensions and generator
94
expressions, such that, for example, ``(*ait async for ait in aits())`` is
0 commit comments