Class t.p.c._ProxyDescriptor(object):

Part of twisted.python.components View Source View In Hierarchy

A descriptor which will proxy attribute access, mutation, and deletion to the original attribute of the object it is being accessed from.
Instance VariablesattributeNamethe name of the attribute which this descriptor will retrieve from instances' original attribute. (type: str )
originalAttributename of the attribute of the proxy where the original object is stored.
Line # Kind Name Docs
402 Method __init__ Undocumented
407 Method __get__ Retrieve the self.attributeName property from oself.
418 Method __set__ Set the self.attributeName property of oself.
426 Method __delete__ Delete the self.attributeName property of oself.
def __init__(self, attributeName, originalAttribute): (source)
Undocumented
def __get__(self, oself, type=None): (source)
Retrieve the self.attributeName property from oself.
def __set__(self, oself, value): (source)
Set the self.attributeName property of oself.
def __delete__(self, oself): (source)
Delete the self.attributeName property of oself.
API Documentation for Twisted, generated by pydoctor at 2008-10-26 16:12:37.