class documentation

class _ProxiedClassMethod: (source)

View In Hierarchy

A proxied class method.
Method __call__ Invoke the specified methodName method of the original attribute for proxyForInterface.
Method __init__ Undocumented
Instance Variable __name__ The name of the method being proxied (the same as methodName).
Instance Variable method​Name the name of the method which this should invoke when called.
Instance Variable original​Attribute name of the attribute of the proxy where the original object is stored.
def __call__(self, oself, *args, **kw): (source)
Invoke the specified methodName method of the original attribute for proxyForInterface.
Parameters
oselfan instance of a proxyForInterface object.
*argsUndocumented
**kwUndocumented
Returns
the result of the underlying method.
def __init__(self, methodName, originalAttribute): (source)

Undocumented

__name__: str = (source)
The name of the method being proxied (the same as methodName).
methodName: str = (source)
the name of the method which this should invoke when called.
originalAttribute: str = (source)
name of the attribute of the proxy where the original object is stored.