From: Brett Cannon Date: Sat, 19 Jun 2004 20:50:47 +0000 (+0000) Subject: Add news item about raising ValueError when timemodule.c code that uses X-Git-Tag: v2.4a1~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b46ed71d706d2f94552e13664c08706421263856;p=python Add news item about raising ValueError when timemodule.c code that uses timestamps will lose precision thanks to time_t < double (bug #919012). --- diff --git a/Misc/NEWS b/Misc/NEWS index 566cb0a35e..6d6dfe9bba 100644 --- 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().