This commit is contained in:
Brett Cannon 2012-11-15 16:13:00 -05:00
commit 0676caf660
3 changed files with 31 additions and 19 deletions

View file

@ -127,6 +127,10 @@ Core and Builtins
Library
-------
- Issue #16469: Fix exceptions from float -> Fraction and Decimal -> Fraction
conversions for special values to be consistent with those for float -> int
and Decimal -> int. Patch by Alexey Kachayev.
- Issue #16481: multiprocessing no longer leaks process handles on Windows.
- Issue #12428: Add a pure Python implementation of functools.partial().