Open kalugny opened 7 years ago
When the date uses the full month name (i.e. "June"):
# works correctly >>> parse('1 ביוני 2014') datetime.datetime(2014, 6, 1, 0, 0)
But when using a shortened month name (i.e. "Aug."):
>>> parse('31 באוג׳ 2014') is None True
I've noticed this doesn't happen if I remove the ב (i.e. "In"), but some dates found in the wild do use it.
ב
Hi, I just created a merge request to fix this
When the date uses the full month name (i.e. "June"):
But when using a shortened month name (i.e. "Aug."):