[issue18827] mistake in the timedelta.total_seconds docstring

2013-08-24 Thread Alexander Schier
Alexander Schier added the comment: Err, sorry my fault. Too late in the evening ;). I saw the division by one million, but not the multiplation by one million before. Additionally i was confused, because i expected that seconds are added to each other in the parenthesis. closing

[issue18827] mistake in the timedelta.total_seconds docstring

2013-08-24 Thread Alexander Schier
New submission from Alexander Schier: > 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 cont