diff options
Diffstat (limited to 'puzzles/tricky_try_except.py')
-rw-r--r-- | puzzles/tricky_try_except.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/puzzles/tricky_try_except.py b/puzzles/tricky_try_except.py new file mode 100644 index 0000000..de829c3 --- /dev/null +++ b/puzzles/tricky_try_except.py @@ -0,0 +1,8 @@ +def foo(): + file = None + try: + file = open('test.json') + except Exception: + pass + + file.name # error |