Issue 4796: Add from_float methods to the decimal module.
diff --git a/Misc/NEWS b/Misc/NEWS
index d30eeaa..9db89a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,8 +12,6 @@
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 @@
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.)