Move tests in basic/tests/ up one level preparating to multiple test dirs.
This commit is contained in:
9
tests/basics/exception1.py
Normal file
9
tests/basics/exception1.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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))
|
||||
Reference in New Issue
Block a user