From c0db4ed95908c0774815da22d4e810c2a5a7a266 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Thu, 24 Feb 2022 08:03:07 +0100 Subject: prefix numbers to puzzles --- puzzles/30_try_except_finally.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 puzzles/30_try_except_finally.py (limited to 'puzzles/30_try_except_finally.py') diff --git a/puzzles/30_try_except_finally.py b/puzzles/30_try_except_finally.py new file mode 100644 index 0000000..d63ab10 --- /dev/null +++ b/puzzles/30_try_except_finally.py @@ -0,0 +1,8 @@ +def foo() -> None: + file = None + try: + file = open('test.json') + except Exception: + return None + finally: + file.name # error -- cgit v1.2.3