-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
gh-122450: Fix docs to state denominator positivity of Fraction #122464
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
Changes from all commits
04056ff
e5a4608
05c764d
ad66afb
416b9cd
7cb1905
ddec59c
ed48fb7
c575b47
a531cb6
1f2519a
2e07bfc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -121,12 +121,11 @@ another rational number, or from a string. | |||||
|
||||||
.. attribute:: numerator | ||||||
|
||||||
Numerator of the Fraction in lowest term. | ||||||
Numerator of the Fraction in lowest terms. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In fact, we say that "The Fraction class inherits from the abstract base class numbers.Rational, and implements all of the methods and operations from that class." So, we could move these numerator/denominator descriptions to the Rational class. CC @AA-Turner There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That would be worse; it requires people to look in two places to find out what happens with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This pr continued in #136800. I hope, I'll address review quickly;-)
I'm not sure if it worth verbosity. I don't see e.g. where described real/imag properties for builtin types, except for the numbers module. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @skirpichev should this PR (#122464) be closed? A There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think so. I tried to attribute this work in a follow-up pr. |
||||||
|
||||||
.. attribute:: denominator | ||||||
|
||||||
Denominator of the Fraction in lowest term. | ||||||
|
||||||
Positive denominator of the Fraction in lowest terms. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.. method:: as_integer_ratio() | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -297,11 +297,13 @@ class Rational(Real): | |||||
@property | ||||||
@abstractmethod | ||||||
def numerator(self): | ||||||
"""The numerator of a rational number in lowest terms.""" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
raise NotImplementedError | ||||||
|
||||||
@property | ||||||
@abstractmethod | ||||||
def denominator(self): | ||||||
"""The (positive) denominator of a rational number in lowest terms.""" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
raise NotImplementedError | ||||||
|
||||||
# Concrete implementation of Real's conversion to float. | ||||||
|
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.