7 lines
135 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# uPy behaviour only: builtin modules are read-only
import usys
try:
usys.x = 1
except AttributeError:
print("AttributeError")