summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2005-07-05 15:21:58 (GMT)
committerMichael W. Hudson <mwh@python.net>2005-07-05 15:21:58 (GMT)
commitb89638148b95c4a018fc8f6c4938ffcd0e1b341a (patch)
tree5499792d4dded418ef51c94fce69c83de07c43a9 /Misc
parent0257424a2ac6ec89732fb90155657dfd8382b686 (diff)
downloadcpython-b89638148b95c4a018fc8f6c4938ffcd0e1b341a.zip
cpython-b89638148b95c4a018fc8f6c4938ffcd0e1b341a.tar.gz
cpython-b89638148b95c4a018fc8f6c4938ffcd0e1b341a.tar.bz2
Fix bug
[ 1232517 ] OverflowError in time.utime() causes strange traceback A needed error check was missing. (Actually, this error check may only have become necessary in fairly recent Python, not sure). Backport candidate.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bcc696a..b3a56b0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 alpha 1?
Core and builtins
-----------------
+- SF bug #1232517: An overflow error was not detected properly when
+ attempting to convert a large float to an int in os.utime().
+
- SF bug #1224347: hex longs now print with lowercase letters just
like their int counterparts.