mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-23 18:13:57 +03:00
Merge pull request #270 from phobologic/master
Prevent serialization from recursing to self
This commit is contained in:
commit
b2259bad6b
|
@ -210,6 +210,9 @@ class Serializer(object):
|
|||
Given a model instance or dict, serialize it to a dict..
|
||||
"""
|
||||
data = {}
|
||||
# Append the instance itself to the stack so that you never iterate
|
||||
# back into the first object.
|
||||
self.stack.append(instance)
|
||||
|
||||
fields = self.get_fields(instance)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user