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 pitrou
Recipients barry, pitrou, r.david.murray
Date 2010-09-15.19:05:22
SpamBayes Score 0.002688462
Marked as misclassified No
Message-id <1284577524.51.0.954157890746.issue9864@psf.upfronthosting.co.za>
In-reply-to
Content
They both return raw tuples, which are not very intuitive to interpret:

>>> email.utils.parsedate_tz("Wed, 15 Sep 2010 09:53:50 -0700 (PDT)")
(2010, 9, 15, 9, 53, 50, 0, 1, -1, -25200)

It would be much better if they returned some kind of namedtuple, which would preserve backwards compatibility but with much better readability and usability.

Note that parsedate() could also return the existing time.struct_time type (which is compatible with a 9-tuple):
http://docs.python.org/library/time.html#time.struct_time
History
Date User Action Args
2010-09-15 19:05:24pitrousetrecipients: + pitrou, barry, r.david.murray
2010-09-15 19:05:24pitrousetmessageid: <1284577524.51.0.954157890746.issue9864@psf.upfronthosting.co.za>
2010-09-15 19:05:23pitroulinkissue9864 messages
2010-09-15 19:05:22pitroucreate