summaryrefslogtreecommitdiff
path: root/examples/natmod/btree/btree_py.py
AgeCommit message (Collapse)Author
2024-05-24examples/natmod/btree: Make btree.open use mp_arg_parse_all for kwargs.Damien George
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>
2023-08-16examples: Mark asm, pio, etc. as noqa: F821 (undefined-name).Angus Gratton
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>
2019-12-12examples/natmod: Add btree example.Damien George