Index: src/zope/testing/testrunner/feature.py =================================================================== --- src/zope/testing/testrunner/feature.py (revision 103608) +++ src/zope/testing/testrunner/feature.py (working copy) @@ -16,14 +16,14 @@ $Id: __init__.py 86232 2008-05-03 15:09:33Z ctheune $ """ -import zope.interface +from zope.interface import implements import zope.testing.testrunner.interfaces class Feature(object): """A base class implementing no-op methods for the IFeature interface.""" - zope.interface.implements(zope.testing.testrunner.interfaces.IFeature) + implements(zope.testing.testrunner.interfaces.IFeature) active = False Index: setup.py =================================================================== --- setup.py (revision 103608) +++ setup.py (working copy) @@ -29,7 +29,7 @@ include_package_data = True, zip_safe = False, ) -except ImportError, e: +except ImportError: from distutils.core import setup extra = {} @@ -105,4 +105,5 @@ "Topic :: Software Development :: Testing", ], + **extra)