diff --git a/ports/qemu-arm/test-frzmpy/frozen_const.py b/ports/qemu-arm/test-frzmpy/frozen_const.py new file mode 100644 index 000000000..19af4a3e2 --- /dev/null +++ b/ports/qemu-arm/test-frzmpy/frozen_const.py @@ -0,0 +1,11 @@ +# Test freezing constants. + +x0 = (1,) +x1 = (1, 2) +x2 = (1, 1 << 100) +x3 = (None, False, True, ...) +x4 = ("str", b"bytes") +x5 = ((),) +x6 = ((1,),) +x7 = ((1, 2),) +x8 = (1, "str", (), ("nested", 2, ((False, True), None, ...)))