diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-08-30 10:33:55 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-08-30 10:33:55 (GMT) |
commit | af3f3a7f00cdf34aaba239021e38b8ede9a107fb (patch) | |
tree | 76f3341caa9fbddfeb16c5ab3af4598c95b4f303 /Doc/library/decimal.rst | |
parent | 9ecae7a43773eed03a134ee45d79054582e4a35e (diff) | |
download | cpython-af3f3a7f00cdf34aaba239021e38b8ede9a107fb.zip cpython-af3f3a7f00cdf34aaba239021e38b8ede9a107fb.tar.gz cpython-af3f3a7f00cdf34aaba239021e38b8ede9a107fb.tar.bz2 |
Closes #10650: Deprecate the watchexp parameter of Decimal.quantize().
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r-- | Doc/library/decimal.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 3fa006b..4a2b2d0 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -737,6 +737,11 @@ Decimal objects resulting exponent is greater than :attr:`Emax` or less than :attr:`Etiny`. + .. deprecated:: 3.3 + *watchexp* is an implementation detail from the pure Python version + and is not present in the C version. It will be removed in version + 3.4, where it defaults to ``True``. + .. method:: radix() Return ``Decimal(10)``, the radix (base) in which the :class:`Decimal` |