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 Neil Muller, andersjm, belopolsky, davidfraser, hodgestar, tebeka, vstinner, werneck
Date 2008-12-12.01:15:45
SpamBayes Score 6.075937e-07
Marked as misclassified No
Message-id <1229044551.46.0.495997967825.issue2736@psf.upfronthosting.co.za>
In-reply-to
Content
belopolsky will be happy to see this new version of my patch:
 - datetime.totimestamp() => (seconds, microseconds): two integers
 - datetime.totimestamp() implement don't use Python time.mktime() but 
directly the C version of mktime() because time.mktime() creates a 
float value
 - fix time.mktime() to support the timestamp -1 (first second before 
the epoch) to make it consistent with datetime.totimestamp() which 
also support this value
 - fix documentation: it's microseconds (10^-6) and not milliseconds 
(10^-3)
History
Date User Action Args
2008-12-12 01:15:52vstinnersetrecipients: + vstinner, tebeka, davidfraser, belopolsky, andersjm, werneck, hodgestar, Neil Muller
2008-12-12 01:15:51vstinnersetmessageid: <1229044551.46.0.495997967825.issue2736@psf.upfronthosting.co.za>
2008-12-12 01:15:50vstinnerlinkissue2736 messages
2008-12-12 01:15:49vstinnercreate