mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 21:30:14 +02:00
67de20ae0a
This commit renames the "tests/frozen" directory into "tests/assets" to make it more explicit that it does contain files that are needed for other tests to function. Right now there's only a single pre-compiled module being used for miscellaneous tests, but it will soon hold ROMFS test data as well. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
8 lines
184 B
Python
8 lines
184 B
Python
print("interned")
|
|
print("a long string that is not interned")
|
|
print("a string that has unicode αβγ chars")
|
|
print(b"bytes 1234\x01")
|
|
print(123456789)
|
|
for i in range(4):
|
|
print(i)
|