Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Russian "tuesday" not parsed when starts from lower-case letter #984

Closed
neko-neko-nyan opened this issue Sep 21, 2021 · 0 comments · Fixed by #999
Closed

Russian "tuesday" not parsed when starts from lower-case letter #984

neko-neko-nyan opened this issue Sep 21, 2021 · 0 comments · Fixed by #999
Labels
Type: Bug - Language Subtype of bug, related to language data

Comments

@neko-neko-nyan
Copy link

I think error is here, in group ,\s\u0432 (should be ,\s\u0432\b). It removes first letter of word "вторник" when it goes after comma.

>>> import dateparser
>>> dateparser.parse('21 сентября 2021г., Вторник')
datetime.datetime(2021, 9, 21, 0, 0)
>>> dateparser.parse('21 сентября 2021г., вторник')
None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Bug - Language Subtype of bug, related to language data
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants