You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you look closer, you'll notice that some of the except: lines don't have any indentation at all after dumping.
It looks like this only happens when the return statement is present in the try part andfrom ... import ... statement is inserted into FST (top level?). Also, it doesn't seem to affect try/return/except on the third level of nesting.
While checking some code related to #190 I've discovered another bug.
Let me start with a demo:
demo.py
:out.demo.py
:What's wrong?
If you look closer, you'll notice that some of the
except:
lines don't have any indentation at all after dumping.It looks like this only happens when the
return
statement is present in thetry
part andfrom ... import ...
statement is inserted into FST (top level?). Also, it doesn't seem to affect try/return/except on the third level of nesting.N.B. Along with this issue, I also observe #190.
The text was updated successfully, but these errors were encountered: