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 mw44118
Recipients mw44118
Date 2009-05-14.16:57:55
SpamBayes Score 0.024098884
Marked as misclassified No
Message-id <1242320277.61.0.875644681622.issue6020@psf.upfronthosting.co.za>
In-reply-to
Content
I do this kind of thing a lot:

>>> from datetime import timedelta
>>> td = timedelta(days=2, seconds=14)
>>> total_duration_in_seconds = td.days * 24 * 60 * 60 + td.seconds

I would like to have a property on the timedelta object do this for me.
History
Date User Action Args
2009-05-14 16:57:57mw44118setrecipients: + mw44118
2009-05-14 16:57:57mw44118setmessageid: <1242320277.61.0.875644681622.issue6020@psf.upfronthosting.co.za>
2009-05-14 16:57:56mw44118linkissue6020 messages
2009-05-14 16:57:55mw44118create