diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-06 03:27:39 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-06 03:27:39 +0200 |
commit | 9fce77c993fce3690f6f6ce6a5c1097e6c74f448 (patch) | |
tree | fd7d62fba55f385e76c8f2aa0112e97de9318dba /tests/basics/try-finally-break.py | |
parent | 3c95ba7e4eda0762d735503b718119e361eb7295 (diff) | |
download | micropython-9fce77c993fce3690f6f6ce6a5c1097e6c74f448.tar.gz micropython-9fce77c993fce3690f6f6ce6a5c1097e6c74f448.zip |
Add more finally + break/continue testcases.
Diffstat (limited to 'tests/basics/try-finally-break.py')
-rw-r--r-- | tests/basics/try-finally-break.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/basics/try-finally-break.py b/tests/basics/try-finally-break.py deleted file mode 100644 index af1704da95..0000000000 --- a/tests/basics/try-finally-break.py +++ /dev/null @@ -1,14 +0,0 @@ -for i in range(4): - print(i) - try: - while True: - try: - try: - break - finally: - print('finally 1') - finally: - print('finally 2') - print('here') - finally: - print('finnaly 3') |