daren_project/venv/Lib/site-packages/twisted/python/__init__.py

22 lines
405 B
Python

# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
"""
Twisted Python: Utilities and Enhancements for Python.
"""
from .deprecate import deprecatedModuleAttribute
from .versions import Version
deprecatedModuleAttribute(
Version("Twisted", 17, 5, 0),
"Please use hyperlink from PyPI instead.",
"twisted.python",
"url",
)
del Version
del deprecatedModuleAttribute