Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: python-wrapt
Source: <url://example.com>
#
# Please double check copyright with the licensecheck(1) command.

Files:     .github/workflows/main.yml
           .gitignore
           .readthedocs.yaml
           MANIFEST.in
           Makefile
           README.rst
           blog/01-how-you-implemented-your-python-decorator-is-wrong.md
           blog/02-the-interaction-between-decorators-and-descriptors.md
           blog/03-implementing-a-factory-for-creating-decorators.md
           blog/04-implementing-a-universal-decorator.md
           blog/05-decorators-which-accept-arguments.md
           blog/06-maintaining-decorator-state-using-a-class.md
           blog/07-the-missing-synchronized-decorator.md
           blog/08-the-synchronized-decorator-as-context-manager.md
           blog/09-performance-overhead-of-using-decorators.md
           blog/10-performance-overhead-when-applying-decorators-to-methods.md
           blog/11-safely-applying-monkey-patches-in-python.md
           blog/12-using-wrapt-to-support-testing-of-software.md
           blog/13-ordering-issues-when-monkey-patching-in-python.md
           blog/14-automatic-patching-of-python-applications.md
           blog/README.md
           docs/Makefile
           docs/_static/.gitkeep
           docs/_templates/.gitkeep
           docs/benchmarks.py
           docs/benchmarks.rst
           docs/benchmarks.sh
           docs/changes.rst
           docs/conf.py
           docs/decorators.rst
           docs/examples.rst
           docs/index.rst
           docs/issues.rst
           docs/quick-start.rst
           docs/testing.rst
           docs/wrappers.rst
           setup.cfg
           setup.py
           src/wrapt/__init__.py
           src/wrapt/_wrappers.c
           src/wrapt/arguments.py
           src/wrapt/decorators.py
           src/wrapt/importer.py
           src/wrapt/wrappers.py
           tests/compat.py
           tests/conftest.py
           tests/requirements.txt
           tests/test_adapter.py
           tests/test_adapter_py3.py
           tests/test_adapter_py33.py
           tests/test_arguments.py
           tests/test_attribute_wrapper.py
           tests/test_callable_object_proxy.py
           tests/test_class.py
           tests/test_class_py37.py
           tests/test_copy.py
           tests/test_decorators.py
           tests/test_descriptors_py36.py
           tests/test_formatargspec_py35.py
           tests/test_formatargspec_py38.py
           tests/test_function.py
           tests/test_function_wrapper.py
           tests/test_inheritance_py37.py
           tests/test_inner_classmethod.py
           tests/test_inner_staticmethod.py
           tests/test_instancemethod.py
           tests/test_memoize.py
           tests/test_monkey_patching.py
           tests/test_nested_function.py
           tests/test_object_proxy.py
           tests/test_outer_classmethod.py
           tests/test_outer_staticmethod.py
           tests/test_pickle.py
           tests/test_post_import_hooks.py
           tests/test_synchronized_lock.py
           tests/test_update_attributes.py
           tests/test_weak_function_proxy.py
Copyright: __NO_COPYRIGHT_NOR_LICENSE__
License:   __NO_COPYRIGHT_NOR_LICENSE__

#----------------------------------------------------------------------------
# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
# license/copyright files.

#----------------------------------------------------------------------------
# License file: LICENSE
 Copyright (c) 2013-2022, Graham Dumpleton
 All rights reserved.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
 .
 * Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
 .
 * Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
