mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 11:08:21 +00:00
22 lines
572 B
Python
22 lines
572 B
Python
# Copyright (c) Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
"""
|
|
Twisted Protocols: A collection of internet protocol implementations.
|
|
"""
|
|
|
|
# Deprecating twisted.protocols.mice.
|
|
from incremental import Version
|
|
from twisted.python.deprecate import deprecatedModuleAttribute
|
|
|
|
deprecatedModuleAttribute(
|
|
Version("Twisted", 16, 0, 0),
|
|
"There is no replacement for this module.",
|
|
"twisted.protocols", "mice")
|
|
|
|
|
|
deprecatedModuleAttribute(
|
|
Version('Twisted', 17, 9, 0),
|
|
"There is no replacement for this module.",
|
|
"twisted.protocols", "dict")
|