Skip to content

Commit

Permalink
bpo-41205: Document Decimal power 0 to the 0 (GH-21386)
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Dickinson <dickinsm@gmail.com>
(cherry picked from commit 10e4664)

Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్  రెడ్డి తాటిపర్తి) <thatiparthysreenivas@gmail.com>
  • Loading branch information
miss-islington and srinivasreddy committed Jul 19, 2020
1 parent 01ab963 commit 8831162
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Doc/library/decimal.rst
Expand Up @@ -1357,6 +1357,9 @@ In addition to the three supplied contexts, new contexts can be created with the
The rounding mode of the context is used. Results are always correctly-rounded
in the Python version.

``Decimal(0) ** Decimal(0)`` results in ``InvalidOperation``, and if ``InvalidOperation``
is not trapped, then results in ``Decimal('NaN')``.

.. versionchanged:: 3.3
The C module computes :meth:`power` in terms of the correctly-rounded
:meth:`exp` and :meth:`ln` functions. The result is well-defined but
Expand Down

0 comments on commit 8831162

Please sign in to comment.