plugin_extra1.py 407 B

1234567891011121314151617181920
  1. # Copyright (c) 2005 Divmod, Inc.
  2. # Copyright (c) Twisted Matrix Laboratories.
  3. # See LICENSE for details.
  4. """
  5. Test plugin used in L{twisted.test.test_plugin}.
  6. """
  7. from zope.interface import provider
  8. from twisted.plugin import IPlugin
  9. from twisted.test.test_plugin import ITestPlugin
  10. @provider(ITestPlugin, IPlugin)
  11. class FourthTestPlugin:
  12. def test1():
  13. pass
  14. test1 = staticmethod(test1)