[issue3185] Documentation of time.time() differs from source documentation
Carsten Grohmann
report at bugs.python.org
Tue Jun 24 08:51:51 CEST 2008
Carsten Grohmann <cgrohmann at users.sourceforge.net> added the comment:
"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
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3185>
_______________________________________
More information about the Python-bugs-list
mailing list