Open tonybaloney opened 1 year ago
def foo(flag): if flag: x = 3 return x foo(True) foo(True) foo(False)
Returns 0 on the third call, instead of raising exception