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 akira
Recipients akira, belopolsky, cool-RR, r.david.murray
Date 2014-09-13.23:35:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1410651315.07.0.108395405731.issue22377@psf.upfronthosting.co.za>
In-reply-to
Content
if PEP 431 is implemented (or anything that gives access to zoneinfo)
then strptime could extend the list of timezones it accepts (utc + 
local timezone names) to include names from the tz database:

  import pytz # $ pip install pytz

  {tzname for tz in map(pytz.timezone, pytz.all_timezones) 
   for _, _, tzname in getattr(tz, '_transition_info', [])}

It includes EST.
History
Date User Action Args
2014-09-13 23:35:15akirasetrecipients: + akira, belopolsky, r.david.murray, cool-RR
2014-09-13 23:35:15akirasetmessageid: <1410651315.07.0.108395405731.issue22377@psf.upfronthosting.co.za>
2014-09-13 23:35:15akiralinkissue22377 messages
2014-09-13 23:35:14akiracreate