summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2008-03-25 14:33:23 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2008-03-25 14:33:23 (GMT)
commit3b24ccbe7e2b43c4373e4b1e988df55978b819e7 (patch)
treec52e728abc2a9a08812e9222d6b3d09e63f6bcea /Misc/NEWS
parentf8f1fbd53c3a2b7fdda863f11242a976ec490e8f (diff)
downloadcpython-3b24ccbe7e2b43c4373e4b1e988df55978b819e7.zip
cpython-3b24ccbe7e2b43c4373e4b1e988df55978b819e7.tar.gz
cpython-3b24ccbe7e2b43c4373e4b1e988df55978b819e7.tar.bz2
Issue #2478: Decimal(sqrt(0)) failed when the decimal context
was not explicitly supplied.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4afd6ca..65815f7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -72,6 +72,8 @@ Extensions Modules
Library
-------
+- Issue #2478: fix failure of decimal.Decimal(0).sqrt()
+
- Issue #2432: give DictReader the dialect and line_num attributes
advertised in the docs.