ajalt/fuckitpy

[Issue] Fuckit does not execute remaining entries in a tuple upon error.

se4u opened this issue · 0 comments

se4u commented

First of all, thank you for this great code, it is very useful. I wanted to point out a small bug however. Here's a MWE:

import fuckit
@fuckit
def tmp():
  (print(1), print(2), print(3))
  (print(1), print(a), print(3))
tmp()

1
2
3
1

The expected behavior is that the last 3 should have been printed.