[pypy-commit] pypy py3.6-asyncgen: fix comment

2019-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3.6-asyncgen Changeset: r97714:bb53568cb83f Date: 2019-10-03 12:43 +0100 http://bitbucket.org/pypy/pypy/changeset/bb53568cb83f/ Log:fix comment diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py --- a/pypy/interpreter/pyopcode.py +++ b/pypy/

[pypy-commit] pypy py3.6-asyncgen: Begin refactoring handling of .w_yielded_from

2019-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3.6-asyncgen Changeset: r97716:d157cd5db6ca Date: 2019-10-03 16:35 +0100 http://bitbucket.org/pypy/pypy/changeset/d157cd5db6ca/ Log:Begin refactoring handling of .w_yielded_from diff --git a/pypy/interpreter/generator.py b/pypy/interpreter/generator.py --- a/pypy

[pypy-commit] pypy py3.6-asyncgen: Store w_yf on the frame instead of the generator

2019-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3.6-asyncgen Changeset: r97717:b1d846ebee27 Date: 2019-10-03 16:52 +0100 http://bitbucket.org/pypy/pypy/changeset/b1d846ebee27/ Log:Store w_yf on the frame instead of the generator diff --git a/pypy/interpreter/generator.py b/pypy/interpreter/generator.py --- a/p

[pypy-commit] pypy py3.6-asyncgen: Allow YIELD_FROM to run even if the generator owning the frame died

2019-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3.6-asyncgen Changeset: r97718:c2f8aa002dda Date: 2019-10-03 18:14 +0100 http://bitbucket.org/pypy/pypy/changeset/c2f8aa002dda/ Log:Allow YIELD_FROM to run even if the generator owning the frame died diff --git a/pypy/interpreter/generator.py b/pypy/interpreter/g

[pypy-commit] pypy py3.6-asyncgen: test cleanup

2019-10-03 Thread rlamy
Author: Ronan Lamy Branch: py3.6-asyncgen Changeset: r97715:7c0d5129bf7b Date: 2019-10-03 15:39 +0100 http://bitbucket.org/pypy/pypy/changeset/7c0d5129bf7b/ Log:test cleanup diff --git a/pypy/interpreter/test/apptest_coroutine.py b/pypy/interpreter/test/apptest_coroutine.py --- a/pypy/inter