Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
18cdfcd7
Commit
18cdfcd7
authored
Dec 18, 2015
by
Tom Christie
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3731 from mjparker777/master
Issue 3726 DateTimeField not handling empty values
parents
61e7f7b0
d9c36084
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
rest_framework/fields.py
+8
-2
tests/test_fields.py
+6
-2
No files found.
rest_framework/fields.py
View file @
18cdfcd7
...
...
@@ -1061,6 +1061,9 @@ class DateTimeField(Field):
self
.
fail
(
'invalid'
,
format
=
humanized_format
)
def
to_representation
(
self
,
value
):
if
not
value
:
return
None
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
DATETIME_FORMAT
)
if
output_format
is
None
:
...
...
@@ -1118,11 +1121,11 @@ class DateField(Field):
self
.
fail
(
'invalid'
,
format
=
humanized_format
)
def
to_representation
(
self
,
value
):
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
DATE_FORMAT
)
if
not
value
:
return
None
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
DATE_FORMAT
)
if
output_format
is
None
:
return
value
...
...
@@ -1183,6 +1186,9 @@ class TimeField(Field):
self
.
fail
(
'invalid'
,
format
=
humanized_format
)
def
to_representation
(
self
,
value
):
if
not
value
:
return
None
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
TIME_FORMAT
)
if
output_format
is
None
:
...
...
tests/test_fields.py
View file @
18cdfcd7
...
...
@@ -959,7 +959,9 @@ class TestDateTimeField(FieldValues):
}
outputs
=
{
datetime
.
datetime
(
2001
,
1
,
1
,
13
,
00
):
'2001-01-01T13:00:00'
,
datetime
.
datetime
(
2001
,
1
,
1
,
13
,
00
,
tzinfo
=
timezone
.
UTC
()):
'2001-01-01T13:00:00Z'
datetime
.
datetime
(
2001
,
1
,
1
,
13
,
00
,
tzinfo
=
timezone
.
UTC
()):
'2001-01-01T13:00:00Z'
,
None
:
None
,
''
:
None
,
}
field
=
serializers
.
DateTimeField
(
default_timezone
=
timezone
.
UTC
())
...
...
@@ -1028,7 +1030,9 @@ class TestTimeField(FieldValues):
'99:99'
:
[
'Time has wrong format. Use one of these formats instead: hh:mm[:ss[.uuuuuu]].'
],
}
outputs
=
{
datetime
.
time
(
13
,
00
):
'13:00:00'
datetime
.
time
(
13
,
00
):
'13:00:00'
,
None
:
None
,
''
:
None
,
}
field
=
serializers
.
TimeField
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment