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
I was expecting x = y + z where y and z are different but compatible to produce an x which is different from both y and z. Instead the following code produced the following results:
x = y + z results in x == y
x = z + y results in x == z
MichaelCurrie
changed the title
Possible Bug with __add__ operation in Python-WCON
Possible Bug with __add__ operation in Python, with multiple worms
Apr 15, 2016
I was expecting x = y + z where y and z are different but compatible to produce an x which is different from both y and z. Instead the following code produced the following results:
x = y + z results in x == y
x = z + y results in x == z
https://gist.github.com/cheelee/e3cc3b513f605a46bebbd49136b78e78
The text was updated successfully, but these errors were encountered: