mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
7 lines
111 B
Python
7 lines
111 B
Python
# builtin type that is not iterable
|
|
try:
|
|
for i in 1:
|
|
pass
|
|
except TypeError:
|
|
print('TypeError')
|