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
Augmented assignments that involve state or box storage can result in the sub-expressions of the left hand side being evaluated twice, for example the following code fails on the assert
Subject of the issue
Augmented assignments that involve state or box storage can result in the sub-expressions of the left hand side being evaluated twice, for example the following code fails on the assert
Expected behaviour
All expressions on the left hand side of augmented assignment is only evaluated once, i.e. in this example
assert self.counter == 1
does not failThe text was updated successfully, but these errors were encountered: