__init__.py 428 B

123456789101112131415
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. """
  4. Twisted Protocols: A collection of internet protocol implementations.
  5. """
  6. # Deprecating twisted.protocols.mice.
  7. from incremental import Version
  8. from twisted.python.deprecate import deprecatedModuleAttribute
  9. deprecatedModuleAttribute(
  10. Version("Twisted", 16, 0, 0),
  11. "There is no replacement for this module.",
  12. "twisted.protocols", "mice")