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 allo
Recipients allo, docs@python
Date 2013-08-24.22:05:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377381921.16.0.995171026465.issue18827@psf.upfronthosting.co.za>
In-reply-to
Content
> Return the total number of seconds contained in the duration. Equivalent to (td.microseconds + (td.seconds + td.days * 24 * 3600) * 10**6) / 10**6 computed with true division enabled.

Should be
> Return the total number of seconds contained in the duration. Equivalent to (td.microseconds / 10**6 + (td.seconds + td.days * 24 * 3600) * 10**6) computed with true division enabled.

At least i hope, the bug is only in the docs and not in the function ;).
History
Date User Action Args
2013-08-24 22:05:21allosetrecipients: + allo, docs@python
2013-08-24 22:05:21allosetmessageid: <1377381921.16.0.995171026465.issue18827@psf.upfronthosting.co.za>
2013-08-24 22:05:21allolinkissue18827 messages
2013-08-24 22:05:20allocreate