/usr/lib/python3/dist-packages/twisted
NameSizeModeActions
application/-0755rm
conch/-0755rm
cred/-0755rm
enterprise/-0755rm
internet/-0755rm
logger/-0755rm
mail/-0755rm
names/-0755rm
pair/-0755rm
persisted/-0755rm
plugins/-0755rm
positioning/-0755rm
protocols/-0755rm
python/-0755rm
runner/-0755rm
scripts/-0755rm
spread/-0755rm
tap/-0755rm
test/-0755rm
trial/-0755rm
web/-0755rm
words/-0755rm
_threads/-0755rm
__pycache__/-0755rm
copyright.py14980644editdlrm
plugin.py84760644editdlrm
py.typed00644editdlrm
_version.py2600644editdlrm
__init__.py2410644editdlrm
__main__.py3860644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/copyright.py (1498B)
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ Copyright information for Twisted. """ __all__ = ["copyright", "disclaimer", "longversion", "version"] from twisted import __version__ as version, version as _longversion longversion = str(_longversion) copyright = """\ Copyright (c) 2001-2022 Twisted Matrix Laboratories. See LICENSE for details.""" disclaimer = """ Twisted, the Framework of Your Internet {} Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """.format( copyright, )