GOAL:
User asks an interface if an instance of a class implements that interface. In the current implementation, this is spelled out:
from IFoo import IFoo from Foo import Foo foo = Foo() IFoo.implementedBy(foo)The above is true or false depending on whether the instance 'foo' implement the 'IFoo?' interface.