1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

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
This commit is contained in:
Jannis Leidel
2010-05-23 10:38:23 +00:00
parent 6b2d6e1833
commit e6ec07dc1f
2 changed files with 7 additions and 0 deletions

View File

@@ -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 #############################################