Message77650
| 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) |
|