]> granicus.if.org Git - python/commitdiff
Merged revisions 78312 via svnmerge from
authorMark Dickinson <dickinsm@gmail.com>
Mon, 22 Feb 2010 15:41:48 +0000 (15:41 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Mon, 22 Feb 2010 15:41:48 +0000 (15:41 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78312 | mark.dickinson | 2010-02-22 15:40:28 +0000 (Mon, 22 Feb 2010) | 1 line

  Clarify description of three-argument pow for Decimal types:  the exponent of the result is always 0.
........

Doc/library/decimal.rst

index 7b2420542af9e575e54bcb5b04d5c6db90a42dd1..d10f375110a6ba627c2a1699b12d869b141c86dd 100644 (file)
@@ -1218,9 +1218,12 @@ In addition to the three supplied contexts, new contexts can be created with the
          - at least one of ``x`` or ``y`` must be nonzero
          - ``modulo`` must be nonzero and have at most 'precision' digits
 
-      The result of ``Context.power(x, y, modulo)`` is identical to the result
-      that would be obtained by computing ``(x**y) % modulo`` with unbounded
-      precision, but is computed more efficiently.  It is always exact.
+      The value resulting from ``Context.power(x, y, modulo)`` is
+      equal to the value that would be obtained by computing ``(x**y)
+      % modulo`` with unbounded precision, but is computed more
+      efficiently.  The exponent of the result is zero, regardless of
+      the exponents of ``x``, ``y`` and ``modulo``.  The result is
+      always exact.
 
 
    .. method:: quantize(x, y)