How can I parse dates (with dateutil) without a year so that when the current date is 17/11/2012 these dates will be parsed like this:
print parser.parse("23 nov", dayfirst=True, yearfirst=False, fuzzy=True)
# 23/11/2012
print parser.parse("28 dec", dayfirst=True, yearfirst=False, fuzzy=True)
# 28/12/2012
print parser.parse("3 jan", dayfirst=True, yearfirst=False, fuzzy=True)
# 3/01/2013
What I want is that already passed months will be in the year that follows the current year. Is there any easy solution for this?