Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | py/objgenerator: Implement PEP479, StopIteration convs to RuntimeError. | Damien George | 2018-09-20 |
| | | | | | | | | This commit implements PEP479 which disallows raising StopIteration inside a generator to signal that it should be finished. Instead, the generator should simply return when it is complete. See https://www.python.org/dev/peps/pep-0479/ for details. | ||
* | tests/gen_yield_from_close: Use range() instead of reversed(). | Paul Sokolovsky | 2017-02-15 |
| | | | | As a "more basic" builtin iterator, present even in smaller ports. | ||
* | tests: Add tests to improve coverage of runtime.c. | Rami Ali | 2016-12-21 |
| | |||
* | tests/basics: Improve test coverage for generators. | Rami Ali | 2016-12-20 |
| | |||
* | tests: Rename test scripts, changing - to _ for consistency. | Damien George | 2014-07-05 |
From now on, all new tests must use underscore. Addresses issue #727. |