STINNER Victor <[email protected]> added the comment: > (...) totimestamp() (...) return value should be similar > to that of time.time(), i.e. a float
float is a source of many problems (rounding problems), especially for huge values: float is unable to store correctly microseconds for big values: see msg75426. A simple tuple (int, int) is simple and there is no rounding/float limit. _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue1673409> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
