mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 19:18:21 +00:00
18 lines
452 B
Python
18 lines
452 B
Python
|
|
# Copyright (c) Twisted Matrix Laboratories.
|
||
|
|
# See LICENSE for details.
|
||
|
|
|
||
|
|
"""
|
||
|
|
Twisted Names: DNS server and client implementations.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from incremental import Version
|
||
|
|
from twisted.python.deprecate import deprecatedModuleAttribute
|
||
|
|
|
||
|
|
from twisted._version import __version__ as version
|
||
|
|
__version__ = version.short()
|
||
|
|
|
||
|
|
deprecatedModuleAttribute(
|
||
|
|
Version("Twisted", 16, 0, 0),
|
||
|
|
"Use twisted.__version__ instead.",
|
||
|
|
"twisted.names", "__version__")
|