mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
10 lines
181 B
Python
10 lines
181 B
Python
print(repr(IndexError()))
|
|
print(str(IndexError()))
|
|
|
|
print(repr(IndexError("foo")))
|
|
print(str(IndexError("foo")))
|
|
|
|
a = IndexError(1, "test", [100, 200])
|
|
print(repr(a))
|
|
print(str(a))
|