Fix numbers.Real.__rdivmod__ doc string (#31991)

This commit is contained in:
Géry Ogam 2022-05-13 16:49:36 +02:00 committed by GitHub
parent 3115c2c036
commit 7e46ae33bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
@ -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].
@ -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.