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_extra1.py 392B

12345678910111213141516171819
  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