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 rosslagerwall
Recipients flox, python-dev, rosslagerwall
Date 2011-11-01.16:22:03
SpamBayes Score 0.016961358
Marked as misclassified No
Message-id <1320164524.52.0.0741297980273.issue13309@psf.upfronthosting.co.za>
In-reply-to
Content
"""
import time
import sys

t = time.gmtime(time.time())
s = time.strftime('%Z', t)
print(s)

time.mktime((-1, 1, 1, 0, 0, 0, -1, -1, -1))

t = time.gmtime(time.time())
s = time.strftime('%Z', t)
print(s)
"""
outputs:
SAST
LMT

on my Gentoo box. I'm still figuring out why...
History
Date User Action Args
2011-11-01 16:22:04rosslagerwallsetrecipients: + rosslagerwall, flox, python-dev
2011-11-01 16:22:04rosslagerwallsetmessageid: <1320164524.52.0.0741297980273.issue13309@psf.upfronthosting.co.za>
2011-11-01 16:22:03rosslagerwalllinkissue13309 messages
2011-11-01 16:22:03rosslagerwallcreate