]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-110383: Clarify "non-integral" wording in pow() docs (#119688)
authorAditya Borikar <adityaborikar2@gmail.com>
Fri, 7 Jun 2024 09:44:42 +0000 (03:44 -0600)
committerGitHub <noreply@github.com>
Fri, 7 Jun 2024 09:44:42 +0000 (11:44 +0200)
Doc/library/functions.rst

index 4617767a71be18a0bb157affec208ca394859557..1d82f92ea67857f5d54adfaf66503119a9c36bc0 100644 (file)
@@ -1561,7 +1561,9 @@ are always available.  They are listed here in alphabetical order.
    returns ``100``, but ``pow(10, -2)`` returns ``0.01``.  For a negative base of
    type :class:`int` or :class:`float` and a non-integral exponent, a complex
    result is delivered.  For example, ``pow(-9, 0.5)`` returns a value close
-   to ``3j``.
+   to ``3j``. Whereas, for a negative base of type :class:`int` or :class:`float`
+   with an integral exponent, a float result is delivered. For example,
+   ``pow(-9, 2.0)`` returns ``81.0``.
 
    For :class:`int` operands *base* and *exp*, if *mod* is present, *mod* must
    also be of integer type and *mod* must be nonzero. If *mod* is present and