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

Add 'Sept' for 'September' #1071

Merged
merged 2 commits into from Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions dateparser/data/date_translation_data/de.py
Expand Up @@ -37,6 +37,7 @@
],
"september": [
"sep",
"sept",
"september"
],
"october": [
Expand Down
Expand Up @@ -34,6 +34,7 @@
],
"september": [
"sep",
"sept",
"september"
],
"october": [
Expand Down
1 change: 1 addition & 0 deletions tests/test_date_parser.py
Expand Up @@ -117,6 +117,7 @@ def setUp(self):
param('21. Dezember 2013', datetime(2013, 12, 21)),
param('19. Februar 2012', datetime(2012, 2, 19)),
param('26. Juli 2014', datetime(2014, 7, 26)),
param('1. Sept 2000', datetime(2000, 9, 1)),
param('18.10.14 um 22:56 Uhr', datetime(2014, 10, 18, 22, 56)),
param('12-Mär-2014', datetime(2014, 3, 12)),
param('Mit 13:14', datetime(2012, 11, 7, 13, 14)),
Expand Down