__init__.py 515 B

123456789101112131415161718
  1. # -*- test-case-name: twisted.conch.test -*-
  2. # Copyright (c) Twisted Matrix Laboratories.
  3. # See LICENSE for details.
  4. """
  5. Twisted Conch: The Twisted Shell. Terminal emulation, SSHv2 and telnet.
  6. """
  7. from incremental import Version
  8. from twisted.python.deprecate import deprecatedModuleAttribute
  9. from twisted._version import __version__ as version
  10. __version__ = version.short()
  11. deprecatedModuleAttribute(
  12. Version("Twisted", 16, 0, 0),
  13. "Use twisted.__version__ instead.",
  14. "twisted.conch", "__version__")