New issue 2009: PyPy3: "yield from" doesn't return all values https://bitbucket.org/pypy/pypy/issue/2009/pypy3-yield-from-doesnt-return-all-values
gmludo:
The script below prints "(1, 2)" with CPython 3.4.3, but "1" with pypy3.3
```
#!python
def f():
yield 3
return 1, 2
def g():
x = yield from f()
print(x)
list(g())
```
_______________________________________________
pypy-issue mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-issue
