Class k.p.AttributeForwarder(
ClassInittableObject
):
Part of
kiwi.python
AttributeForwarder is an object which is used to forward certain attributes to another object.
cvar
attributes
list of attributes to be forwarded
ivar
target
forwarded object
Function
__class_init__
Called when the class is created
Function
__init__
Create a new AttributeForwarder object.
def
__class_init__(cls, ns):
Called when the class is created
param
cls
class
param
namespace
namespace for newly created
type
namespace
dict
def
__init__(self, target):
Create a new AttributeForwarder object.
param
target
object to forward attributes to