]> granicus.if.org Git - python/commitdiff
Add news item about raising ValueError when timemodule.c code that uses
authorBrett Cannon <bcannon@gmail.com>
Sat, 19 Jun 2004 20:50:47 +0000 (20:50 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sat, 19 Jun 2004 20:50:47 +0000 (20:50 +0000)
timestamps will lose precision thanks to time_t < double (bug #919012).

Misc/NEWS

index 566cb0a35e79a56f286d03041e01d26ef508f0e8..6d6dfe9bbaadb1ff05ccefba3de339aae96b9f70 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -228,6 +228,10 @@ Core and builtins
 Extension modules
 -----------------
 
+- time module code that deals with time_t timestamps will now raise a
+  ValueError if more than a second is lost in precision from time_t being less
+  precise than a double.  Closes bug #919012.
+
 - fcntl.ioctl now warns if the mutate flag is not specified.
 
 - nt now properly allows to refer to UNC roots, e.g. in nt.stat().