python3.11 ```python def test(a, b): try: if a/b: a=1 else: a=2 except: a=3 return ``` The code above can be decompiled correctly ```python def test(a, b): try: if a/b: a=1 else: a=2 except: a=3 ``` can't be decompiled correctly