summaryrefslogtreecommitdiff
path: root/src/zope/component/tests/examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/component/tests/examples.py')
-rw-r--r--src/zope/component/tests/examples.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/zope/component/tests/examples.py b/src/zope/component/tests/examples.py
index 2b5e08c..3f670c2 100644
--- a/src/zope/component/tests/examples.py
+++ b/src/zope/component/tests/examples.py
@@ -53,9 +53,6 @@ class ISI(Interface):
class ISII(Interface):
pass
-def noop(*args):
- pass
-
class U(object):
def __init__(self, name):
@@ -121,11 +118,6 @@ class Comp(object):
comp = Comp(1)
-@implementer(I3)
-class Comp2(object):
- def __init__(self, context):
- self.context = context
-
class ConformsToIComponentLookup(object):
"""Allow a dummy sitemanager to conform/adapt to `IComponentLookup`."""