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.
After PEP 701, having comments mixed with debug expressions is possible but the interactions has not been discussed. For instance, consider this code:
a = 1
f"{a = # my comment
}"
this produces:
'a = # my comment\n1'
which is surprising. What we should do here? I think we should probably not include the comment but we should agree on the behavior before a PR can be made
The text was updated successfully, but these errors were encountered:
After PEP 701, having comments mixed with debug expressions is possible but the interactions has not been discussed. For instance, consider this code:
this produces:
which is surprising. What we should do here? I think we should probably not include the comment but we should agree on the behavior before a PR can be made
The text was updated successfully, but these errors were encountered: