2014-01-13 12:19:16 -05:00
|
|
|
print(repr(IndexError()))
|
|
|
|
print(str(IndexError()))
|
|
|
|
|
|
|
|
print(repr(IndexError("foo")))
|
|
|
|
print(str(IndexError("foo")))
|
|
|
|
|
2014-01-15 16:40:48 -05:00
|
|
|
a = IndexError(1, "test", [100, 200])
|
|
|
|
print(repr(a))
|
2014-01-15 17:39:03 -05:00
|
|
|
print(str(a))
|
2014-03-24 19:29:09 -04:00
|
|
|
print(a.args)
|
|
|
|
|
|
|
|
s = StopIteration()
|
|
|
|
print(s.value)
|
|
|
|
s = StopIteration(1, 2, 3)
|
|
|
|
print(s.value)
|