diff options
author | Guido van Rossum <guido@python.org> | 2007-03-06 15:50:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-03-06 15:50:01 (GMT) |
commit | 2054ee9b6f268d16e90e4ff30186b5a4a1f91719 (patch) | |
tree | 031cec2752a201c6f5b4d4139781f6f7dc38394c | |
parent | d1287323ca3273f4408a5c3f3047c316b72ea78c (diff) | |
download | cpython-2054ee9b6f268d16e90e4ff30186b5a4a1f91719.zip cpython-2054ee9b6f268d16e90e4ff30186b5a4a1f91719.tar.gz cpython-2054ee9b6f268d16e90e4ff30186b5a4a1f91719.tar.bz2 |
Patch #1646728: datetime.fromtimestamp fails with negative
fractional times. With unittest.
Somebody please backport to 2.5.
-rw-r--r-- | Lib/test/test_datetime.py | 9 | ||||
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rw-r--r-- | Modules/datetimemodule.c | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index 3aa0468..b0341a4 100644 --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -1425,6 +1425,15 @@ class TestDateTime(TestDate): self.assertRaises(ValueError, self.theclass.utcfromtimestamp, insane) + def test_negative_float_fromtimestamp(self): + # The result is tz-dependent; at least test that this doesn't + # fail (like it did before bug 1646728 was fixed). + self.theclass.fromtimestamp(-1.05) + + def test_negative_float_utcfromtimestamp(self): + d = self.theclass.utcfromtimestamp(-1.05) + self.assertEquals(d, self.theclass(1969, 12, 31, 23, 59, 58, 950000)) + def test_utcnow(self): import time @@ -404,6 +404,9 @@ Library Extension Modules ----------------- +- Patch #1646728: datetime.fromtimestamp fails with negative + fractional times. With unittest. + - Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() functions on platforms where the underlying system calls are available. diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index cf8a68b..7487c50 100644 --- a/Modules/datetimemodule.c +++ b/Modules/datetimemodule.c @@ -3683,6 +3683,12 @@ datetime_from_timestamp(PyObject *cls, TM_FUNC f, double timestamp, return NULL; fraction = timestamp - (double)timet; us = (int)round_to_long(fraction * 1e6); + if (us < 0) { + /* Truncation towards zero is not what we wanted + for negative numbers (Python's mod semantics) */ + timet -= 1; + us += 1000000; + } /* If timestamp is less than one microsecond smaller than a * full second, round up. Otherwise, ValueErrors are raised * for some floats. */ |