-
Notifications
You must be signed in to change notification settings - Fork 288
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
Fix extra nonzero call for chained comparisons #1190
Labels
Comments
Oops yes, thanks :) |
Hi @kmod
|
sizeoftank
pushed a commit
to sizeoftank/pyston_v1
that referenced
this issue
Jul 15, 2016
sizeoftank
pushed a commit
to sizeoftank/pyston_v1
that referenced
this issue
Jul 20, 2016
kmod
added a commit
that referenced
this issue
Jul 21, 2016
Fix extra nonzero call for chained comparisons #1190
Closed via #1301 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See compare_ordering.py
The issue is that for chanined comparisons (
a < b < c
), we do something like:Where that final
nonzero(t2)
call is extraneous and should be removed.The text was updated successfully, but these errors were encountered: