class documentation

class Deserializer:

Known subclasses: django.core.serializers.xml_serializer.Deserializer

View In Hierarchy

Abstract base deserializer class.
Method __init__ Init this serializer given a stream or a string
Method __iter__ Undocumented
Method __next__ Iteration interface -- return the next item in the stream
Instance Variable options Undocumented
Instance Variable stream Undocumented
def __init__(self, stream_or_string, **options):
Init this serializer given a stream or a string
def __iter__(self):

Undocumented

def __next__(self):
Iteration interface -- return the next item in the stream
options =

Undocumented

stream =

Undocumented