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 cgrohmann
Recipients cgrohmann, georg.brandl, loewis
Date 2008-06-24.06:51:50
SpamBayes Score 0.006716926
Marked as misclassified No
Message-id <1214290311.64.0.968455366572.issue3185@psf.upfronthosting.co.za>
In-reply-to
Content
"current local unix seconds" means seconds since the Epoch in local
timezone.

I've attached a small example to show that is no difference between the
time returned by time.localtime() and time.time(). So I assume that
time.time() also returns local time and not UTC.

>>> time.mktime(time.localtime())
1214290130.0
>>> time.time()
1214290130.697067
History
Date User Action Args
2008-06-24 06:51:52cgrohmannsetspambayes_score: 0.00671693 -> 0.006716926
recipients: + cgrohmann, loewis, georg.brandl
2008-06-24 06:51:51cgrohmannsetspambayes_score: 0.00671693 -> 0.00671693
messageid: <1214290311.64.0.968455366572.issue3185@psf.upfronthosting.co.za>
2008-06-24 06:51:50cgrohmannlinkissue3185 messages
2008-06-24 06:51:50cgrohmanncreate