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
3b2e70dd
Commit
3b2e70dd
authored
Jul 05, 2011
by
Tom Christie
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #43 from sebpiq/master
Corrected bug in serializers
parents
2dc042f0
31614755
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
djangorestframework/serializer.py
+5
-5
No files found.
djangorestframework/serializer.py
View file @
3b2e70dd
...
...
@@ -177,7 +177,7 @@ class Serializer(object):
Keys serialize to their string value,
unless they exist in the `rename` dict.
"""
return
getattr
(
self
.
rename
,
smart_str
(
key
),
smart_str
(
key
))
return
self
.
rename
.
get
(
smart_str
(
key
),
smart_str
(
key
))
def
serialize_val
(
self
,
key
,
obj
):
...
...
@@ -228,7 +228,10 @@ class Serializer(object):
# serialize each required field
for
fname
in
fields
:
if
hasattr
(
self
,
smart_str
(
fname
)):
if
fname
in
instance
:
# finally check for a key 'fname' on the instance
obj
=
instance
[
fname
]
elif
hasattr
(
self
,
smart_str
(
fname
)):
# check for a method 'fname' on self first
meth
=
getattr
(
self
,
fname
)
if
inspect
.
ismethod
(
meth
)
and
len
(
inspect
.
getargspec
(
meth
)[
0
])
==
2
:
...
...
@@ -236,9 +239,6 @@ class Serializer(object):
elif
hasattr
(
instance
,
smart_str
(
fname
)):
# now check for an attribute 'fname' on the instance
obj
=
getattr
(
instance
,
fname
)
elif
fname
in
instance
:
# finally check for a key 'fname' on the instance
obj
=
instance
[
fname
]
else
:
continue
...
...
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