This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients amaury.forgeotdarc, belopolsky, brett.cannon, catlee, erik.stephens, guettli, jribbens, lemburg, pitrou, skip.montanaro, srittau, steve.roberts, tim.peters, tomster, vstinner
Date 2008-12-15.13:15:46
SpamBayes Score 0.017413871
Marked as misclassified No
Message-id <1229346947.85.0.0746038391436.issue1673409@psf.upfronthosting.co.za>
In-reply-to
Content
> (...) 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.
History
Date User Action Args
2008-12-15 13:15:47vstinnersetrecipients: + vstinner, lemburg, tim.peters, skip.montanaro, brett.cannon, jribbens, srittau, guettli, amaury.forgeotdarc, belopolsky, pitrou, catlee, tomster, erik.stephens, steve.roberts
2008-12-15 13:15:47vstinnersetmessageid: <1229346947.85.0.0746038391436.issue1673409@psf.upfronthosting.co.za>
2008-12-15 13:15:46vstinnerlinkissue1673409 messages
2008-12-15 13:15:46vstinnercreate