class documentation

class ExpressionObjectBase(object): (source)

Known subclasses: zim.templates.expression.ExpressionDictObject, zim.templates.expression.ExpressionListObject, zim.templates.expression.ExpressionStringObject

View In Hierarchy

Base method for wrapper objects that are used to determine the safe functions to call on objects in the parameter dict.

The attribute _fmethods() lists methods that can be called safely on the wrapped objects.

Method __getattr__ Undocumented
Method __getitem__ Undocumented
Method __init__ Undocumented
Method __iter__ Undocumented
Method __len__ Undocumented
Method __repr__ Undocumented
Method __str__ Undocumented
Method len Undocumented
Method reversed Undocumented
Method sorted Undocumented
Class Variable _fmethods Undocumented
Instance Variable _obj Undocumented
def __getattr__(self, name): (source)

Undocumented

def __getitem__(self, k): (source)

Undocumented

def __init__(self, obj): (source)

Undocumented

def __iter__(self): (source)

Undocumented

def __len__(self): (source)

Undocumented

def __repr__(self): (source)

Undocumented

def __str__(self): (source)

Undocumented

Undocumented

@ExpressionFunction
def reversed(self): (source)

Undocumented

@ExpressionFunction
def sorted(self): (source)

Undocumented

_obj = (source)

Undocumented