-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-38639: Optimize floor(), ceil() and trunc() for floats. #16991
bpo-38639: Optimize floor(), ceil() and trunc() for floats. #16991
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proposed changes LGTM. For things of exact type float
(and possibly also for float
subclasses), I think we could dispense with the math_1_to_int
complications to get even more speedup. But that doesn't have to happen in this PR.
Do we have tests for the various cases of floats, float subclasses that don't override __floor__
, float subclasses that do override __floor__
, things that aren't floats but provide a __float__
method, etc.? If not, would it be worth adding such tests?
It occurs to me that I don't know how a subclass of
|
I think that it would be better to not call |
Thank you for your review @mdickinson, I addressed your comments and added tests. Could you please take another look? |
https://bugs.python.org/issue38639