feedparser should provide you with a struct_time object from the Python time module. I assume that it does not recognize the date format and therefore gives you a raw string.
See here how to add support for parsing invalid timestamps:
http://pythonhosted.org/feedparser/date-parsing.html
struct_time, :
http://docs.python.org/library/time.html#time.struct_time
struct_time , . :
time.struct_time(tm_year=2010, tm_mon=2, tm_mday=4, tm_hour=23, tm_min=44, tm_sec=19, tm_wday=3, tm_yday=35, tm_isdst=0)
structs , :
import time
import calendar
struct = time.localtime()
seconds = calendar.timegm(struct)
, , , datetime timedeltas.