Coverage for tld/registry.py: 100%
7 statements
« prev ^ index » next coverage.py v7.4.4, created at 2024-05-27 05:40 +0000
« prev ^ index » next coverage.py v7.4.4, created at 2024-05-27 05:40 +0000
1import warnings
3from .base import Registry # noqa
5__author__ = "Artur Barseghyan"
6__copyright__ = "2013-2023 Artur Barseghyan"
7__license__ = "MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later"
8__all__ = ("Registry",)
10warnings.warn(
11 "The `Registry` class is moved from `tld.registry` to `tld.base`.",
12 DeprecationWarning,
13)