class documentation

class PendingCollection(object):

View In Hierarchy

A writable placeholder for an unloaded collection.

Stores items appended to and removed from a collection that has not yet been loaded. When the collection is loaded, the changes stored in PendingCollection are applied to it to produce the final result.

Method __init__ Undocumented
Method append Undocumented
Method remove Undocumented
Instance Variable added​_items Undocumented
Instance Variable deleted​_items Undocumented
def __init__(self):

Undocumented

def append(self, value):

Undocumented

def remove(self, value):

Undocumented

added_items =

Undocumented

deleted_items =

Undocumented