mirror of
https://github.com/django/django.git
synced 2025-11-01 04:17:59 +00:00
Fixed #6035 -- Gave the SplitDateTimeField the proper default widget. Thanks dtulig.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9385 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
6ed91234e3
commit
8cdc53a265
2 changed files with 4 additions and 1 deletions
|
|
@ -1322,6 +1322,8 @@ u'.../django/forms/fields.py'
|
|||
# SplitDateTimeField ##########################################################
|
||||
|
||||
>>> f = SplitDateTimeField()
|
||||
>>> f.widget
|
||||
<django.forms.widgets.SplitDateTimeWidget object ...
|
||||
>>> f.clean([datetime.date(2006, 1, 10), datetime.time(7, 30)])
|
||||
datetime.datetime(2006, 1, 10, 7, 30)
|
||||
>>> f.clean(None)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue