Re: converting datetime with tzinfo to unix timestamp

2010-03-15 Thread Gabriel Genellina
En Fri, 12 Mar 2010 20:15:55 -0300, Michael Torrie escribió: On Python 2.5 here. I've searched and searched but I can't find any way to convert a datetime object that includes a timezone (tzinfo) to a unix timestamp. Folks on the net say to simply use the timetuple() method of the object and

converting datetime with tzinfo to unix timestamp

2010-03-12 Thread Michael Torrie
On Python 2.5 here. I've searched and searched but I can't find any way to convert a datetime object that includes a timezone (tzinfo) to a unix timestamp. Folks on the net say to simply use the timetuple() method of the object and feed that to time.mktime(). But that just doesn't seem to work fo