I am reading some parameters data from a csv and I am struggling to convert the date so that it is accepted by the class Date()
I have tried that:
d = datetime.date(datetime.strptime('2011-03-07','%Y-%m-%d'))
Date(d)
but it returns:
NotImplementedError: Wrong number or type of arguments for overloaded function 'new_Date'.