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 belopolsky
Recipients belopolsky, docs@python
Date 2010-06-23.17:14:44
SpamBayes Score 0.00011264311
Marked as misclassified No
Message-id <1277313287.04.0.19115846548.issue9063@psf.upfronthosting.co.za>
In-reply-to
Content
With python started at the root of the source tree and TZ=US/Eastern in the environment,

>>> exec(open('Doc/includes/tzinfo-examples.py').read())
>>> import os
>>> os.environ['TZ']
'US/Eastern'
>>> from datetime import *
>>> x = datetime(2010, 11, 7, 5, tzinfo=timezone.utc)
>>> print(x, x.astimezone(Local), x.astimezone(Eastern))
2010-11-07 05:00:00+00:00 2010-11-07 01:00:00-04:00 2010-11-07 01:00:00-05:00
>>> x.astimezone(Local).dst() == x.astimezone(Eastern).dst() 
False

Note that according to my understanding of the long comment at the end of datetimemodule.c, zone conversion from UTC is a well defined operation unless there is a bug in tzinfo subclass implementation.
History
Date User Action Args
2010-06-23 17:14:47belopolskysetrecipients: + belopolsky, docs@python
2010-06-23 17:14:47belopolskysetmessageid: <1277313287.04.0.19115846548.issue9063@psf.upfronthosting.co.za>
2010-06-23 17:14:45belopolskylinkissue9063 messages
2010-06-23 17:14:44belopolskycreate