Class t.p.c.Adapter:

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

Known subclasses: twisted.manhole.ui.gtk2manhole.ManholeClient, twisted.internet.protocol.ProtocolToConsumerAdapter, twisted.internet.protocol.ConsumerToProtocolAdapter, twisted.conch.manhole_ssh.TerminalSession, twisted.conch.manhole_ssh.TerminalUser, twisted.manhole._inspectro.InspectorNode

I am the default implementation of an Adapter for some interface.

This docstring contains a limerick, by popular demand:
   Subclassing made Zope and TR
   much harder to work with by far.
       So before you inherit,
       be sure to declare it
   Adapter, not PyObject*
Class VariablestemporaryAdapterIf this is True, the adapter will not be persisted on the Componentized.
multiComponentIf this adapter is persistent, should it be automatically registered for all appropriate interfaces.
Line # Kind Name Docs
149 Method __init__ Set my 'original' attribute to be the object I am adapting.
154 Method __conform__ I forward __conform__ to self.original if it has it, otherwise I
163 Method isuper Forward isuper to self.original
def __init__(self, original):
Set my 'original' attribute to be the object I am adapting.
def __conform__(self, interface):
I forward __conform__ to self.original if it has it, otherwise I simply return None.
def isuper(self, iface, adapter):
Forward isuper to self.original