Alexander Belopolsky <alexander.belopol...@gmail.com> added the comment:
On Wed, Jul 25, 2012 at 4:17 AM, Marc-Andre Lemburg <rep...@bugs.python.org> wrote: > ... full C double precision for the time part of a timestamp, > which covers nanoseconds just fine. No, it does not: >>> import time >>> t = time.time() >>> t + 5e-9 == t True In fact, C double precision is barely enough to cover microseconds: >>> t + 1e-6 == t False >>> t + 1e-7 == t True ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue15443> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com