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.

twisted_conch.py 530B

12345678910111213141516171819
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. from twisted.application.service import ServiceMaker
  4. TwistedSSH = ServiceMaker(
  5. "Twisted Conch Server", "twisted.conch.tap", "A Conch SSH service.", "conch"
  6. )
  7. TwistedManhole = ServiceMaker(
  8. "Twisted Manhole (new)",
  9. "twisted.conch.manhole_tap",
  10. (
  11. "An interactive remote debugger service accessible via telnet "
  12. "and ssh and providing syntax coloring and basic line editing "
  13. "functionality."
  14. ),
  15. "manhole",
  16. )