2015-04-04 22:05:30 +01:00
|
|
|
# uPy behaviour only: builtin modules are read-only
|
2022-08-18 16:57:45 +10:00
|
|
|
import sys
|
2015-04-04 22:05:30 +01:00
|
|
|
try:
|
2022-08-18 16:57:45 +10:00
|
|
|
sys.x = 1
|
2015-04-04 22:05:30 +01:00
|
|
|
except AttributeError:
|
|
|
|
print("AttributeError")
|