Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin_extra2.py 550B

123456789101112131415161718192021222324252627282930
  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. @staticmethod
  13. def test1():
  14. pass
  15. @provider(ITestPlugin, IPlugin)
  16. class FifthTestPlugin:
  17. """
  18. More documentation: I hate you.
  19. """
  20. @staticmethod
  21. def test1():
  22. pass