diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-15 21:40:48 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-15 21:40:48 +0000 |
commit | e2fb2baaa48ef6da317a533b5d168b1ab0fcefe8 (patch) | |
tree | fda27be68f5ca1e8ec860bab8d1acdeebeeda698 /tests/basics | |
parent | 9528cd66d7c94d7376884a53c2080b29e9bc3a0a (diff) | |
download | micropython-e2fb2baaa48ef6da317a533b5d168b1ab0fcefe8.tar.gz micropython-e2fb2baaa48ef6da317a533b5d168b1ab0fcefe8.zip |
Implement repr.
Diffstat (limited to 'tests/basics')
-rw-r--r-- | tests/basics/tests/exception1.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/basics/tests/exception1.py b/tests/basics/tests/exception1.py index 95d933de76..14817fb931 100644 --- a/tests/basics/tests/exception1.py +++ b/tests/basics/tests/exception1.py @@ -1,3 +1,2 @@ -# TODO: requires repr() -#a = IndexError(1, "test", [100, 200]) -#print(repr(a)) +a = IndexError(1, "test", [100, 200]) +print(repr(a)) |