Add Misc/NEWS entry for r79609.

This commit is contained in:
Mark Dickinson 2010-04-03 15:47:46 +00:00
parent 4dbda8593d
commit 8a95071fc1
1 changed files with 6 additions and 0 deletions

View File

@ -47,6 +47,12 @@ Core and Builtins
Library Library
------- -------
- Issue #8257: The Decimal construct now accepts a float instance
directly, converting that float to a Decimal of equal value:
>>> Decimal(1.1)
Decimal('1.100000000000000088817841970012523233890533447265625')
- collections.Counter() now supports a subtract() method. - collections.Counter() now supports a subtract() method.
- Issue #8294: The Fraction constructor now accepts Decimal and float - Issue #8294: The Fraction constructor now accepts Decimal and float