timedelta
10.01.2009 by Dirk OlmesPython comes with a rich libray of classes for dealing with date and time. I was working with datetime.time objects the other day and needed to calculate the difference between to time instances. To my great surprise this isn’t easily doable as Python’s standard lib only has timedelta
objects which cannot deal with pure time objects.
So I had to write my own timedelta function which takes two time instances and calculates the difference. The diff will be returned as a time instance.
The source is publicly available from its mercurial repository.
Comments
There are no comments yet.
Leave a comment