aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/Twisted-12.2.0-py2.7-linux-x86_64.egg/twisted/scripts/__init__.py
blob: fcde9682cb570163d70acadcf5247c0028bde2e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Subpackage containing the modules that implement the command line tools.

Note that these are imported by top-level scripts which are intended to be
invoked directly from a shell.
"""

from twisted.python.versions import Version
from twisted.python.deprecate import deprecatedModuleAttribute


deprecatedModuleAttribute(
    Version("Twisted", 11, 1, 0),
    "Seek unzipping software outside of Twisted.",
    __name__,
    "tkunzip")

deprecatedModuleAttribute(
    Version("Twisted", 12, 1, 0),
    "tapconvert has been deprecated.",
    __name__,
    "tapconvert")

del Version, deprecatedModuleAttribute