John Gordon wrote:
In <023130ef$0$19421$c3e8...@news.astraweb.com> Steven D'Aprano <st...@remove-this-cybersource.com.au> writes:if time_difference < 3601:That's a potential off-by-one error. [...] The right test is: if time_difference <= 3600:Aren't those two comparisons the same?
Only if time_difference is an integer. --Scott David Daniels scott.dani...@acm.org -- http://mail.python.org/mailman/listinfo/python-list