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 thelinuxduck
Recipients
Date 2003-07-31.16:41:36
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=490655

Sorry to pollute here, but just an FYI:
Setting line 103 
to:
environ['TZ'] = 'Australia/Victoria'
and changing lines 106-
107 to:
self.failUnless(time.tzname[0] == 'EST', 
str(time.tzname[0]))
self.failUnless(time.tzname[1] == 'EST', 
str(time.tzname[1]))

all subsequent tests pass just fine, and 
the module test completes successfully.

Granted, I don't know 
what the difference between EST and EDT is, but it works. 
(=

With line 103, setting environ['TZ'] as the var 'victoria' and 
setting line 107 to AEST, that test passes, but as I mentioned before, the 
time.daylight test fails.
History
Date User Action Args
2007-08-23 14:14:23adminlinkissue763153 messages
2007-08-23 14:14:23admincreate