Skip to content

Commit

Permalink
Fix numbers.Real.__rdivmod__ doc string (#31991)
Browse files Browse the repository at this point in the history
  • Loading branch information
geryogam committed May 13, 2022
1 parent 3115c2c commit 7e46ae3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Lib/numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __rtruediv__(self, other):

@abstractmethod
def __pow__(self, exponent):
"""self**exponent; should promote to float or complex when necessary."""
"""self ** exponent; should promote to float or complex when necessary."""
raise NotImplementedError

@abstractmethod
Expand Down Expand Up @@ -192,7 +192,7 @@ def __trunc__(self):
"""trunc(self): Truncates self to an Integral.
Returns an Integral i such that:
* i>0 iff self>0;
* i > 0 iff self > 0;
* abs(i) <= abs(self);
* for any Integral j satisfying the first two conditions,
abs(i) >= abs(j) [i.e. i has "maximal" abs among those].
Expand Down Expand Up @@ -228,7 +228,7 @@ def __divmod__(self, other):
return (self // other, self % other)

def __rdivmod__(self, other):
"""divmod(other, self): The pair (self // other, self % other).
"""divmod(other, self): The pair (other // self, other % self).
Sometimes this can be computed faster than the pair of
operations.
Expand Down

0 comments on commit 7e46ae3

Please sign in to comment.