summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-11-15 21:13:00 (GMT)
committerBrett Cannon <brett@python.org>2012-11-15 21:13:00 (GMT)
commit0676caf66082af23806f2316e4debf2c70bf9cf5 (patch)
tree658f8dd40f1a40694fa27e6b456c644ce4009f43 /Misc
parent27b6793c72b8e74808997c3fc3e2ff7e912b0887 (diff)
parent73726aac0fada5a94587fde7ba48aa0699e59bc9 (diff)
downloadcpython-0676caf66082af23806f2316e4debf2c70bf9cf5.zip
cpython-0676caf66082af23806f2316e4debf2c70bf9cf5.tar.gz
cpython-0676caf66082af23806f2316e4debf2c70bf9cf5.tar.bz2
merge
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7ffbd7b..10e2d63 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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().