Comment 1 for bug 344166

Revision history for this message
Martin Pitt (pitti) wrote :

$ python2.6 -c 'import datetime; print datetime.datetime(2008, 1, 7, 5, 30, 30, 345323).timetuple()'
time.struct_time(tm_year=2008, tm_mon=1, tm_mday=7, tm_hour=5, tm_min=30, tm_sec=30, tm_wday=0, tm_yday=7, tm_isdst=-1)

$ python2.5 -c 'import datetime; print datetime.datetime(2008, 1, 7, 5, 30, 30, 345323).timetuple()'
(2008, 1, 7, 5, 30, 30, 0, 7, -1)