Class f.d.DataSetStore(list):

Part of fixture.dataset View In Hierarchy

keeps track of actual objects stored in a dataset.
Method __init__ Undocumented
Method get_object returns the object at this key.
Method store Undocumented
def __init__(self, dataset):
Undocumented
def get_object(self, key):
returns the object at this key.

In this example...

>>> class EventData(DataSet):
...     class click:
...         id=1

...the key is "click." The object returned would be an adapter for EventData, probably an Event object

def store(self, key, obj):
Undocumented
API Documentation for fixture, generated by pydoctor.