diff options
author | Brett Cannon <bcannon@gmail.com> | 2004-06-19 20:50:47 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2004-06-19 20:50:47 (GMT) |
commit | b46ed71d706d2f94552e13664c08706421263856 (patch) | |
tree | d67d65fcc7464de72474f97f32812e8ba324f9cd | |
parent | 298c380c74294bedcc0b5999c57e3aca03fb3731 (diff) | |
download | cpython-b46ed71d706d2f94552e13664c08706421263856.zip cpython-b46ed71d706d2f94552e13664c08706421263856.tar.gz cpython-b46ed71d706d2f94552e13664c08706421263856.tar.bz2 |
Add news item about raising ValueError when timemodule.c code that uses
timestamps will lose precision thanks to time_t < double (bug #919012).
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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(). |