summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-03 22:03:11 (GMT)
committerGeorg Brandl <georg@python.org>2009-01-03 22:03:11 (GMT)
commitfe427895b58769840f1f61a82ea0cdfe55150347 (patch)
treeba6fc9493239a122199292caada1e9345d26e8f6 /Misc
parentc63785db867804de8b676ddddcc90c3fcbf2c111 (diff)
downloadcpython-fe427895b58769840f1f61a82ea0cdfe55150347.zip
cpython-fe427895b58769840f1f61a82ea0cdfe55150347.tar.gz
cpython-fe427895b58769840f1f61a82ea0cdfe55150347.tar.bz2
Manually merge r68095,68186,68187,68188,68190 from 2.6 branch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 02a7df0..078824e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -127,6 +127,12 @@ Library
- Issue #4646: distutils was choking on empty options arg in the setup
function. Original patch by Thomas Heller.
+- Fractions.from_float() no longer loses precision for integers too big to
+ cast as floats.
+
+- 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 #3767: Convert Tk object to string in tkColorChooser.
- Issue #3248: Allow placing ScrolledText in a PanedWindow.