summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-08-30 12:33:55 +0200
committerStefan Krah <skrah@bytereef.org>2012-08-30 12:33:55 +0200
commitaf3f3a7f00cdf34aaba239021e38b8ede9a107fb (patch)
tree76f3341caa9fbddfeb16c5ab3af4598c95b4f303
parent9ecae7a43773eed03a134ee45d79054582e4a35e (diff)
downloadcpython-git-af3f3a7f00cdf34aaba239021e38b8ede9a107fb.tar.gz
Closes #10650: Deprecate the watchexp parameter of Decimal.quantize().
-rw-r--r--Doc/library/decimal.rst5
-rw-r--r--Doc/whatsnew/3.3.rst4
-rw-r--r--Misc/NEWS3
3 files changed, 12 insertions, 0 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index 3fa006bec2..4a2b2d0a9b 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`
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 845de84557..47cbd4ec4d 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1190,6 +1190,10 @@ API changes
changed to match the order displayed by :func:`repr`.
+* The ``watchexp`` parameter in the :meth:`~decimal.Decimal.quantize` method
+ is deprecated.
+
+
ftplib
------
diff --git a/Misc/NEWS b/Misc/NEWS
index 3d55f54a40..98be0c2e08 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Library
- Issue #15340: Fix importing the random module when /dev/urandom cannot
be opened. This was a regression caused by the hash randomization patch.
+- Issue #10650: Deprecate the watchexp parameter of the Decimal.quantize()
+ method.
+
- Issue #15785: Modify window.get_wch() API of the curses module: return
a character for most keys, and an integer for special keys, instead of
always returning an integer. So it is now possible to distinguish special