__init__.py 348 B

12345678910111213141516
  1. # Copyright (c) Twisted Matrix Laboratories.
  2. # See LICENSE for details.
  3. """
  4. Chat protocols.
  5. """
  6. from incremental import Version
  7. from twisted.python.deprecate import deprecatedModuleAttribute
  8. deprecatedModuleAttribute(
  9. Version("Twisted", 16, 2, 0),
  10. "There is no replacement for this module.",
  11. "twisted.words.protocols",
  12. "oscar")