From 9fce77c993fce3690f6f6ce6a5c1097e6c74f448 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Thu, 6 Feb 2014 03:27:39 +0200 Subject: Add more finally + break/continue testcases. --- tests/basics/try-finally-break.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tests/basics/try-finally-break.py (limited to 'tests/basics/try-finally-break.py') 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') -- cgit v1.2.3