| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
| |
The three-argument form of `.throw()` is deprecated since CPython 3.12. So
split out into separate tests (with .exp files) the parts of the generator
tests that test more than one argument.
Signed-off-by: Damien George <damien@micropython.org>
|
|
|
|
| |
This test was found by missing coverage of a branch in py/nativeglue.c.
|
|
|
|
| |
Fixes issue #4527.
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
From now on, all new tests must use underscore.
Addresses issue #727.
|