summaryrefslogtreecommitdiff
path: root/tests/basics/nanbox_smallint.py
AgeCommit message (Collapse)Author
2025-01-26tests/basics/nanbox_smallint.py: Fix incorrect use of int() in test.Jeff Epler
The literal is in base 16 but int()'s default radix in CPython is 10, not 0. Signed-off-by: Jeff Epler <jepler@gmail.com>
2022-12-06py/mpconfig: Include micropython module in core features.Laurens Valk
This excludes it from the minimal builds. Signed-off-by: Laurens Valk <laurens@pybricks.com>
2022-05-23tests/basics: Unlock heap if skipping nanbox small-int test.Damien George
Signed-off-by: Damien George <damien@micropython.org>
2022-03-07tests/basics: Add test for creating small-ints in nan-box builds.Damien George
Signed-off-by: Damien George <damien@micropython.org>