[Python-checkins] python/dist/src/Misc NEWS,1.1309,1.1310

mwh@users.sourceforge.net mwh at users.sourceforge.net
Tue Jul 5 17:22:16 CEST 2005


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9704/Misc

Modified Files:
	NEWS 
Log Message:
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.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1309
retrieving revision 1.1310
diff -u -d -r1.1309 -r1.1310
--- NEWS	4 Jul 2005 17:16:05 -0000	1.1309
+++ NEWS	5 Jul 2005 15:21:55 -0000	1.1310
@@ -12,6 +12,9 @@
 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.
 



More information about the Python-checkins mailing list