User Tools

Site Tools


community:bug_use_datetime_not_time

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
community:bug_use_datetime_not_time [2014/08/27 01:39] sekulacommunity:bug_use_datetime_not_time [2014/08/27 01:39] (current) sekula
Line 1: Line 1:
 +====== Bug: Use Datetime and not Time (Python) ======
  
 +The code currently uses python's time library. This is to gain access to the strptime function, which converts a string into a datetime object. However, time is very limited and its strptime function cannot handle offsets (e.g. %z in datetime.strptime). This offset feature is needed to handle time strings. Switch the code to use datetime and not time.
 +
 +Reported by: Jon Robbins (http://jrobb.org)
 +
 +{{tag>bug resolved high_priority}}