From 648957b707491b99dc32a3cdbeaaa3fe9f3164cf Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Sat, 18 Nov 2017 05:37:58 +0900 Subject: [PATCH] Fixed #28798 -- Removed unused django.utils.dates.WEEKDAYS_REV, MONTHS_3_REV. --- django/utils/dates.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/django/utils/dates.py b/django/utils/dates.py index 3108bbd223..d2e769db84 100644 --- a/django/utils/dates.py +++ b/django/utils/dates.py @@ -10,10 +10,6 @@ WEEKDAYS_ABBR = { 0: _('Mon'), 1: _('Tue'), 2: _('Wed'), 3: _('Thu'), 4: _('Fri'), 5: _('Sat'), 6: _('Sun') } -WEEKDAYS_REV = { - 'monday': 0, 'tuesday': 1, 'wednesday': 2, 'thursday': 3, 'friday': 4, - 'saturday': 5, 'sunday': 6 -} MONTHS = { 1: _('January'), 2: _('February'), 3: _('March'), 4: _('April'), 5: _('May'), 6: _('June'), 7: _('July'), 8: _('August'), 9: _('September'), 10: _('October'), 11: _('November'), @@ -23,10 +19,6 @@ MONTHS_3 = { 1: _('jan'), 2: _('feb'), 3: _('mar'), 4: _('apr'), 5: _('may'), 6: _('jun'), 7: _('jul'), 8: _('aug'), 9: _('sep'), 10: _('oct'), 11: _('nov'), 12: _('dec') } -MONTHS_3_REV = { - 'jan': 1, 'feb': 2, 'mar': 3, 'apr': 4, 'may': 5, 'jun': 6, 'jul': 7, 'aug': 8, - 'sep': 9, 'oct': 10, 'nov': 11, 'dec': 12 -} MONTHS_AP = { # month names in Associated Press style 1: pgettext_lazy('abbrev. month', 'Jan.'), 2: pgettext_lazy('abbrev. month', 'Feb.'),