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:
@@ -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 #############################################
|
||||
|
||||
Reference in New Issue
Block a user