-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unexpected behavior when using equal() with a numpy array #66
Comments
You're right about this issue is related to #62. When you do This could be solved using
According this issue, an index parameter could be added to x.equal(y[0], index=0) |
Thanks for the answer. I was using The thing that confused me at first is that The issue here is not the behavior of I'm happy to help here if need be. |
change _qfmt and _fxpfmt to methods
solved in v0.4.9 |
The following code results in an unexpected behavior. At least for me.
I expected it to print 2.25, but it prints 1.25.
The assignment works it you use x[0] = y[0]. It also works if you don't use arrays, i.e.,
prints 2.25. This issue seems related to #62.
The text was updated successfully, but these errors were encountered: