qemu-arm/test-frzmpy: Add test for freezing constant tuples.

Signed-off-by: Damien George <damien@micropython.org>
pull/8504/head
Damien George 2022-04-07 23:54:24 +10:00
rodzic 999abbb8b5
commit abdc4ec08d
1 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

@ -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, ...)))