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
ebb40704
Commit
ebb40704
authored
May 10, 2016
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve TimeField representation for midnight value. (#4107)
parent
0795f739
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
rest_framework/fields.py
+1
-1
tests/test_fields.py
+2
-1
No files found.
rest_framework/fields.py
View file @
ebb40704
...
...
@@ -1191,7 +1191,7 @@ class TimeField(Field):
self
.
fail
(
'invalid'
,
format
=
humanized_format
)
def
to_representation
(
self
,
value
):
if
not
value
:
if
value
in
(
None
,
''
)
:
return
None
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
TIME_FORMAT
)
...
...
tests/test_fields.py
View file @
ebb40704
...
...
@@ -1063,7 +1063,8 @@ 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
,
0
):
'13:00:00'
,
datetime
.
time
(
0
,
0
):
'00:00:00'
,
'00:00:00'
:
'00:00:00'
,
None
:
None
,
''
:
None
,
...
...
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