]> granicus.if.org Git - python/commitdiff
Issue #7770: Note the useful range of sin/cos in the decimal module examples.
authorRaymond Hettinger <python@rcn.com>
Sun, 21 Nov 2010 02:47:22 +0000 (02:47 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 21 Nov 2010 02:47:22 +0000 (02:47 +0000)
Doc/library/decimal.rst

index d0dedda40e562d6683caa2a19a1a39df32e5bd81..d1e8bc750eaa3ab8837abdc2dbe873ad204a921c 100644 (file)
@@ -1717,6 +1717,9 @@ to work with the :class:`Decimal` class::
    def cos(x):
        """Return the cosine of x as measured in radians.
 
+       The taylor series approximation works best for a small value of x.
+       For larger values, first compute x = x % (2 * pi).
+
        >>> print(cos(Decimal('0.5')))
        0.8775825618903727161162815826
        >>> print(cos(0.5))
@@ -1740,6 +1743,9 @@ to work with the :class:`Decimal` class::
    def sin(x):
        """Return the sine of x as measured in radians.
 
+       The taylor series approximation works best for a small value of x.
+       For larger values, first compute x = x % (2 * pi).
+
        >>> print(sin(Decimal('0.5')))
        0.4794255386042030002732879352
        >>> print(sin(0.5))