diff options
| author | GitHub Merge Button | 2011-07-06 04:42:39 -0700 |
|---|---|---|
| committer | GitHub Merge Button | 2011-07-06 04:42:39 -0700 |
| commit | 03a73cf95d6b57d998101c775f40946888daa5a2 (patch) | |
| tree | b5523dffada59dc620569ca6b9f4eabfd33510ad /djangorestframework/serializer.py | |
| parent | 3b2e70dd3a3bbac0fb5318329483b4a4eb20410a (diff) | |
| parent | 11ee3857437e2d6f4e6ddc89ee0289e90395c1c4 (diff) | |
| download | django-rest-framework-03a73cf95d6b57d998101c775f40946888daa5a2.tar.bz2 | |
Merge 11ee3857437e2d6f4e6ddc89ee0289e90395c1c4 into 3b2e70dd3a3bbac0fb5318329483b4a4eb20410a
Diffstat (limited to 'djangorestframework/serializer.py')
| -rw-r--r-- | djangorestframework/serializer.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/djangorestframework/serializer.py b/djangorestframework/serializer.py index 88ea12d8..22efa5ed 100644 --- a/djangorestframework/serializer.py +++ b/djangorestframework/serializer.py @@ -228,16 +228,16 @@ class Serializer(object): # serialize each required field for fname in fields: - 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 + if hasattr(self, smart_str(fname)): + # check first for a method 'fname' on self first meth = getattr(self, fname) if inspect.ismethod(meth) and len(inspect.getargspec(meth)[0]) == 2: obj = meth(instance) + elif hasattr(instance, '__contains__') and fname in instance: + # check for a key 'fname' on the instance + obj = instance[fname] elif hasattr(instance, smart_str(fname)): - # now check for an attribute 'fname' on the instance + # finally check for an attribute 'fname' on the instance obj = getattr(instance, fname) else: continue |
