Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Comparison result is always the same Comparison is always false because res <= 0. Indeed the for(;;) iteration may stop on 3 different breaks: res = -1; break; if (!res) { break; if (!res) { break; Therefore, after the loop, the only possible values for res are -1 and 0, and (res > 0) is always false. This originates in 37dc69c (numpy#17029).
- Loading branch information