diff options
author | Georg Brandl <georg@python.org> | 2009-01-03 22:07:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-03 22:07:57 (GMT) |
commit | 3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8 (patch) | |
tree | 1bc74abad9db6c9a36875d97c1229998ea26fa4f /Misc | |
parent | 3f5f8228c02618480a2fd6bc8583621a94bacf2f (diff) | |
download | cpython-3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8.zip cpython-3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8.tar.gz cpython-3a9b062f5bb0f7d9c2a408c31509cdee4f6aa4c8.tar.bz2 |
Manually merge r68096,68189 from 3.0 branch.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -92,9 +92,15 @@ Library - Issue #4796: Added Decimal.from_float() and Context.create_decimal_from_float() to the decimal module. +- Fractions.from_float() no longer loses precision for integers too big to + cast as floats. + - Issue #4812: add missing underscore prefix to some internal-use-only constants in the decimal module. (Dec_0 becomes _Dec_0, etc.) +- Issue 4790: The nsmallest() and nlargest() functions in the heapq module + did unnecessary work in the common case where no key function was specified. + - Issue #4702: Throwing a DistutilsPlatformError instead of IOError in case no MSVC compiler is found under Windows. Original patch by Philip Jenvey. |