Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-27 | tests/basics: Split out generator.throw tests that pass multiple args. | Damien George | |
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> | |||
2024-03-07 | all: Prune trailing whitespace. | Phil Howard | |
Prune trailing whitespace across the whole project (almost), done automatically with: grep -IUrl --color "[[:blank:]]$" --exclude-dir=.git --exclude=*.exp |\ xargs sed -i 's/[[:space:]]*$//' Exceptions: - Skip third-party code in lib/ and drivers/cc3100/ - Skip generated code in bluetooth_init_cc2564C_1.5.c - Preserve command output whitespace in docs, eg: docs/esp8266/tutorial/repl.rst Signed-off-by: Phil Howard <phil@gadgetoid.com> | |||
2019-05-09 | py/objgenerator: Fix handling of None passed as 2nd arg to throw(). | Damien George | |
Fixes issue #4527. | |||
2018-09-28 | tests/basics: Split out gen throw tests from yield-from-throw tests. | Damien George | |