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
fc08236a
Commit
fc08236a
authored
Dec 13, 2015
by
mjparker777
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated timefield also
parent
81775dfb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
rest_framework/fields.py
+3
-0
tests/test_fields.py
+3
-1
No files found.
rest_framework/fields.py
View file @
fc08236a
...
@@ -1186,6 +1186,9 @@ class TimeField(Field):
...
@@ -1186,6 +1186,9 @@ class TimeField(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
.
TIME_FORMAT
)
output_format
=
getattr
(
self
,
'format'
,
api_settings
.
TIME_FORMAT
)
if
output_format
is
None
:
if
output_format
is
None
:
...
...
tests/test_fields.py
View file @
fc08236a
...
@@ -1030,7 +1030,9 @@ class TestTimeField(FieldValues):
...
@@ -1030,7 +1030,9 @@ class TestTimeField(FieldValues):
'99:99'
:
[
'Time has wrong format. Use one of these formats instead: hh:mm[:ss[.uuuuuu]].'
],
'99:99'
:
[
'Time has wrong format. Use one of these formats instead: hh:mm[:ss[.uuuuuu]].'
],
}
}
outputs
=
{
outputs
=
{
datetime
.
time
(
13
,
00
):
'13:00:00'
datetime
.
time
(
13
,
00
):
'13:00:00'
,
None
:
None
,
''
:
None
,
}
}
field
=
serializers
.
TimeField
()
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