summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-01-03 19:20:32 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-01-03 19:20:32 (GMT)
commit771ed76102a0c8a1c13dcd80d682f64c5e94c043 (patch)
treeac76febff16820cc07ed78954aa8b9affdc98263 /Misc
parent5f81741106ebf500ce249c37b86642344c4215c9 (diff)
downloadcpython-771ed76102a0c8a1c13dcd80d682f64c5e94c043.zip
cpython-771ed76102a0c8a1c13dcd80d682f64c5e94c043.tar.gz
cpython-771ed76102a0c8a1c13dcd80d682f64c5e94c043.tar.bz2
Issue 4796: Add from_float methods to the decimal module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d30eeaa..9db89a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,8 +12,6 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
-- Issue #4817: Remove unused function PyOS_GetLastModificationTime.
-
- Issue #4580: Fix slicing of memoryviews when the item size is greater than
one byte. Also fixes the meaning of len() so that it returns the number of
items, rather than the size in bytes.
@@ -88,6 +86,9 @@ Library
Python 3.x, in accordance with the `official amendments of the spec
<http://www.wsgi.org/wsgi/Amendments_1.0>`_.
+- Issue #4796: Added Decimal.from_float() and Context.create_decimal_from_float()
+ to the decimal module.
+
- Issue #4812: add missing underscore prefix to some internal-use-only
constants in the decimal module. (Dec_0 becomes _Dec_0, etc.)