GOAL:
The user asks an interface if a class implements that interface. In the current implementation, this is spelled out:
from IFoo import Foo from Foo import Foo IFoo.implementedByInstancesOf(Foo)The above expression will be true or false depending on whether the 'Foo' class implements the 'IFoo?' interface.