Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | examples/natmod/btree: Make btree.open use mp_arg_parse_all for kwargs. | Damien George | 2024-05-24 |
| | | | | | | | Python code is no longer needed to implement keyword arguments in `btree.open()`, it can now be done in C. Signed-off-by: Damien George <damien@micropython.org> | ||
* | examples: Mark asm, pio, etc. as noqa: F821 (undefined-name). | Angus Gratton | 2023-08-16 |
| | | | | | | | | | | | These files all use decorators (@asm_thumb, @asm_pio) that add names to the function scope, that the linter cannot see. It's useful to clear them in the file not in pyproject.toml as example code will be copied and adapted elsewhere, and those developers may also use Ruff (we hope!) Signed-off-by: Angus Gratton <angus@redyak.com.au> | ||
* | examples/natmod: Add btree example. | Damien George | 2019-12-12 |