module documentation

Undocumented

Function create​_namedtuple​_class Undocumented
Function make​_model​_tuple Take a model or a string of the form "app_label.ModelName" and return a corresponding ("app_label", "modelname") tuple. If a tuple is passed in, assume it's a valid model tuple already and return it unchanged.
Function resolve​_callables Generate key/value pairs for the given mapping where the values are evaluated if they're callable.
Function unpickle​_named​_row Undocumented
@functools.lru_cache()
def create_namedtuple_class(*names):

Undocumented

def make_model_tuple(model):
Take a model or a string of the form "app_label.ModelName" and return a corresponding ("app_label", "modelname") tuple. If a tuple is passed in, assume it's a valid model tuple already and return it unchanged.
def resolve_callables(mapping):
Generate key/value pairs for the given mapping where the values are evaluated if they're callable.
def unpickle_named_row(names, values):

Undocumented