[Python-Dev] PEP 479 and asyncio
Olemis Lang
olemis at gmail.com
Fri Nov 28 16:21:51 CET 2014
correction ...
On 11/28/14, Olemis Lang <olemis at gmail.com> wrote:
>
> try:
> ...
> except RuntimeError:
> return
>
... should be
{{{#!py
# inside generator function body
try:
...
except StopIteration:
return
}}}
[...]
--
Regards,
Olemis - @olemislc
Apache(tm) Bloodhound contributor
http://issues.apache.org/bloodhound
http://blood-hound.net
Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/
Featured article:
More information about the Python-Dev
mailing list