[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Berker Peksag added the comment: New changeset 5e8c52680450b67a116d3d555db8416c40576fdb by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-32384: Skip test when _testcapi isn't available (GH-4940)

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Berker Peksag added the comment: New changeset 4af6110f77e141779492995fd168d4f027fcf3cf by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-32384: Skip test when _testcapi isn't available (GH-4940)

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +6565 ___ Python tracker ___

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +6564 ___ Python tracker ___

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Berker Peksag added the comment: New changeset 4cc3eb48e1e8289df5153db1c701cae263a1ef86 by Berker Peksag (Isaiah Peng) in branch 'master': bpo-32384: Skip test when _testcapi isn't available (GH-4940)

[issue32384] Generator tests is broken in non-CPython implementation

2018-05-16 Thread Berker Peksag
Change by Berker Peksag : -- versions: +Python 3.7, Python 3.8 ___ Python tracker ___

[issue32384] Generator tests is broken in non-CPython implementation

2017-12-24 Thread Srinivas Reddy T
Change by Srinivas Reddy T : -- pull_requests: +4894 ___ Python tracker ___

[issue32384] Generator tests is broken in non-CPython implementation

2017-12-20 Thread R. David Murray
Change by R. David Murray : -- nosy: +yselivanov type: enhancement -> behavior ___ Python tracker ___

[issue32384] Generator tests is broken in non-CPython implementation

2017-12-20 Thread Isaiah Peng
Change by Isaiah Peng : -- keywords: +patch pull_requests: +4831 stage: -> patch review ___ Python tracker ___

[issue32384] Generator tests is broken in non-CPython implementation

2017-12-20 Thread Liqun Peng
New submission from Liqun Peng : The fix for bpo-30039 introduced a regression test in `test.test_generators` which uses `_testcapi` module, it doesn't check `ImportError` and so breaks on other implementations. -- components: Tests messages: 308717 nosy: isaiahp