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
bf60c080
Commit
bf60c080
authored
Dec 13, 2015
by
mjparker777
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue 3726 DateTimeField not handling empty values
parent
dcaff712
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
rest_framework/fields.py
+3
-0
tests/test_fields.py
+2
-0
No files found.
rest_framework/fields.py
View file @
bf60c080
...
@@ -1061,6 +1061,9 @@ class DateTimeField(Field):
...
@@ -1061,6 +1061,9 @@ class DateTimeField(Field):
self
.
fail
(
'invalid'
,
format
=
humanized_format
)
self
.
fail
(
'invalid'
,
format
=
humanized_format
)
def
to_representation
(
self
,
value
):
def
to_representation
(
self
,
value
):
if
not
value
:
return
None
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
DATETIME_FORMAT
)
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
DATETIME_FORMAT
)
if
output_format
is
None
:
if
output_format
is
None
:
...
...
tests/test_fields.py
View file @
bf60c080
...
@@ -960,6 +960,8 @@ class TestDateTimeField(FieldValues):
...
@@ -960,6 +960,8 @@ class TestDateTimeField(FieldValues):
outputs
=
{
outputs
=
{
datetime
.
datetime
(
2001
,
1
,
1
,
13
,
00
):
'2001-01-01T13:00:00'
,
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
())
field
=
serializers
.
DateTimeField
(
default_timezone
=
timezone
.
UTC
())
...
...
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