mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 11:08:21 +00:00
24 lines
699 B
Python
24 lines
699 B
Python
# -*- test-case-name: twisted.web.test -*-
|
|
# Copyright (c) Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
"""
|
|
Twisted Web: HTTP clients and servers, plus tools for implementing them.
|
|
|
|
Contains a L{web server<twisted.web.server>} (including an
|
|
L{HTTP implementation<twisted.web.http>}, a
|
|
L{resource model<twisted.web.resource>}), and
|
|
a L{web client<twisted.web.client>}.
|
|
"""
|
|
|
|
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.web", "__version__")
|