Should be fixed now.
The problem is that Julia 0.2's == used to call isequal, but now isequal calls ==. So, previously I was overriding isequal, and now I have to override ==. Or, to stay backwards compatible, I need to override both.
Should be fixed now.
The problem is that Julia 0.2's == used to call isequal, but now isequal calls ==. So, previously I was overriding isequal, and now I have to override ==. Or, to stay backwards compatible, I need to override both.