Skip to content
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-23975: Correct conversion of Rational’s to float #25619

Merged
merged 10 commits into from
Sep 4, 2022
Merged

bpo-23975: Correct conversion of Rational’s to float #25619

merged 10 commits into from
Sep 4, 2022

Conversation

skirpichev
Copy link
Member

@skirpichev skirpichev commented Apr 26, 2021

Also document that numerator/denominator properties are instances of the Integral.

This solution was suggested by Paul Moore.

https://bugs.python.org/issue23975

@github-actions
Copy link

github-actions bot commented Jun 3, 2021

This PR is stale because it has been open for 30 days with no activity.

@github-actions github-actions bot added the stale Stale PR or inactive for long period of time. label Jun 3, 2021
Also document that numerator/denominator properties
are instances of the Integral.
@skirpichev
Copy link
Member Author

@mdickinson, you are listed as an expert for the fractions module, could you review this little PR? (This, probably, lacks a test.)

@mdickinson
Copy link
Member

@skirpichev Seems like a reasonable approach to me. But as you say, it needs a test before it can go in. (There should be at least something in the test suite that fails if those int conversions are removed.)

@skirpichev
Copy link
Member Author

But as you say, it needs a test before it can go in.

Ok, lets see how it looks.

@skirpichev
Copy link
Member Author

skirpichev commented Mar 20, 2022

Hmm, unfortunately, there is a silent type-cast. I can adjust the test, but may be it does make sense to add

diff --git a/Lib/fractions.py b/Lib/fractions.py
index f9ac882ec0..4a153ee8e3 100644
--- a/Lib/fractions.py
+++ b/Lib/fractions.py
@@ -143,6 +143,10 @@ def __new__(cls, numerator=0, denominator=None, *, _normalize=True):
         elif type(numerator) is int is type(denominator):
             pass # *very* normal case
 
+        elif (isinstance(numerator, numbers.Integral) and
+            isinstance(denominator, numbers.Integral)):
+            pass
+
         elif (isinstance(numerator, numbers.Rational) and
             isinstance(denominator, numbers.Rational)):
             numerator, denominator = (

... or I can just "fix" type of private _numerator/denominator properties in the test by monkey patching.

@skirpichev
Copy link
Member Author

@mdickinson, let me know if you have some objections for added tests (maybe Lib/test/test_abstract_numbers.py is the right place to this?). I've realized that there almost no tests for default methods of the numbers.py (#32022 address this issue, partially).

@mdickinson mdickinson self-requested a review April 12, 2022 10:25
@MaxwellDupre
Copy link
Contributor

The fix looks simple but where does the current implementation fail? Can you provide a test case such that the current fails but the after the fix the test succeeds?

@skirpichev
Copy link
Member Author

@MaxwellDupre, the added test should be such one. At least it was a failing test for the old main branch (~Apr 2021).

Copy link
Contributor

@MaxwellDupre MaxwellDupre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions github-actions bot removed the stale Stale PR or inactive for long period of time. label Aug 6, 2022
@mdickinson mdickinson added needs backport to 3.10 only security fixes needs backport to 3.11 only security fixes labels Sep 4, 2022
Copy link
Member

@mdickinson mdickinson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@mdickinson mdickinson merged commit 8464b75 into python:main Sep 4, 2022
@miss-islington
Copy link
Contributor

Thanks @skirpichev for the PR, and @mdickinson for merging it 🌮🎉.. I'm working now to backport this PR to: 3.10, 3.11.
🐍🍒⛏🤖

@bedevere-bot
Copy link

GH-96556 is a backport of this pull request to the 3.11 branch.

@bedevere-bot bedevere-bot removed the needs backport to 3.11 only security fixes label Sep 4, 2022
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 4, 2022
…thonGH-25619)

* pythongh-68163: Correct conversion of Rational instances to float

Also document that numerator/denominator properties are instances of Integral.

Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
(cherry picked from commit 8464b75)

Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
@bedevere-bot bedevere-bot removed the needs backport to 3.10 only security fixes label Sep 4, 2022
@bedevere-bot
Copy link

GH-96557 is a backport of this pull request to the 3.10 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 4, 2022
…thonGH-25619)

* pythongh-68163: Correct conversion of Rational instances to float

Also document that numerator/denominator properties are instances of Integral.

Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
(cherry picked from commit 8464b75)

Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
@skirpichev skirpichev deleted the fix-23975 branch September 4, 2022 12:30
mdickinson pushed a commit that referenced this pull request Sep 4, 2022
GH-96557)

* gh-68163: Correct conversion of Rational instances to float

Also document that numerator/denominator properties are instances of Integral.

Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
(cherry picked from commit 8464b75)

Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
pablogsal pushed a commit that referenced this pull request Sep 8, 2022
…H-25619) (#96556)

Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants