[issue15568] yield from missed StopIteration raised from iterator instead of getting value

2012-08-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset ee55f8e4fb50 by Benjamin Peterson in branch 'default': fix yield from return value on custom iterators (closes #15568) http://hg.python.org/cpython/rev/ee55f8e4fb50 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected sta

[issue15568] yield from missed StopIteration raised from iterator instead of getting value

2012-08-06 Thread Meador Inge
Changes by Meador Inge : -- nosy: +meador.inge ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue15568] yield from missed StopIteration raised from iterator instead of getting value

2012-08-06 Thread Alex Gaynor
Changes by Alex Gaynor : -- nosy: +alex ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue15568] yield from missed StopIteration raised from iterator instead of getting value

2012-08-06 Thread Dino Viehland
New submission from Dino Viehland: When implementing an iterable object by hand, and raising StopIteration with a value, the value is not provided as the result of the yield from expression. This differs from the behavior in the "Formal Semantics" section. Here's an example of how it differs