Ausgabe der neuen DB Einträge
This commit is contained in:
parent
bad48e1627
commit
cfbbb9ee3d
2399 changed files with 843193 additions and 43 deletions
29
venv/lib/python3.9/site-packages/twisted/python/__init__.py
Normal file
29
venv/lib/python3.9/site-packages/twisted/python/__init__.py
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Copyright (c) Twisted Matrix Laboratories.
|
||||
# See LICENSE for details.
|
||||
|
||||
"""
|
||||
Twisted Python: Utilities and Enhancements for Python.
|
||||
"""
|
||||
|
||||
from __future__ import absolute_import, division
|
||||
|
||||
# Deprecating twisted.python.constants.
|
||||
from .compat import unicode
|
||||
from .versions import Version
|
||||
from .deprecate import deprecatedModuleAttribute
|
||||
|
||||
deprecatedModuleAttribute(
|
||||
Version("Twisted", 16, 5, 0),
|
||||
"Please use constantly from PyPI instead.",
|
||||
"twisted.python", "constants")
|
||||
|
||||
|
||||
deprecatedModuleAttribute(
|
||||
Version('Twisted', 17, 5, 0),
|
||||
"Please use hyperlink from PyPI instead.",
|
||||
"twisted.python", "url")
|
||||
|
||||
|
||||
del Version
|
||||
del deprecatedModuleAttribute
|
||||
del unicode
|
||||
Loading…
Add table
Add a link
Reference in a new issue