Added a .parent attribute to the Serializer object for documentation

purposes
This commit is contained in:
Alen Mujezinovic 2012-03-01 12:51:23 +00:00
parent 54a19105f0
commit 0a57cf9876

View File

@ -96,6 +96,11 @@ class Serializer(object):
""" """
The maximum depth to serialize to, or `None`. The maximum depth to serialize to, or `None`.
""" """
parent = None
"""
A reference to the root serializer when descending down into fields.
"""
def __init__(self, depth=None, stack=[], **kwargs): def __init__(self, depth=None, stack=[], **kwargs):
if depth is not None: if depth is not None: