Commit e6ec07dc authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Fixed #13592 -- Make sure the SelectDateWidget works with dates before 1900...

Fixed #13592 -- Make sure the SelectDateWidget works with dates before 1900 when localization is enabled. Thanks for the report and patch, magnus.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13301 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 6b2d6e18
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ import datetime
import re

from django.forms.widgets import Widget, Select
from django.utils import datetime_safe
from django.utils.dates import MONTHS
from django.utils.safestring import mark_safe
from django.utils.formats import get_format
@@ -100,6 +101,7 @@ class SelectDateWidget(Widget):
                except ValueError:
                    pass
                else:
                    date_value = datetime_safe.new_date(date_value)
                    return date_value.strftime(input_format)
            else:
                return '%s-%s-%s' % (y, m, d)
+5 −0
Original line number Diff line number Diff line
@@ -435,6 +435,11 @@ USE_L10N tests
<option value="2016">2016</option>
</select>

Years before 1900 work
>>> w = SelectDateWidget(years=('1899',))
>>> w.value_from_datadict({'date_year': '1899', 'date_month': '8', 'date_day': '13'}, {}, 'date')
'13-08-1899'

>>> translation.deactivate()

# MultiWidget and MultiValueField #############################################