mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 18:30:27 +02: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))
|