summaryrefslogtreecommitdiffhomepage
path: root/libs/tld/registry.py
blob: 26db23f57ee2cf9c420d9e5404d2b60d7671991a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import warnings
from .base import Registry

__author__ = "Artur Barseghyan"
__copyright__ = "2013-2021 Artur Barseghyan"
__license__ = "MPL-1.1 OR GPL-2.0-only OR LGPL-2.1-or-later"
__all__ = ("Registry",)

warnings.warn(
    "The `Registry` class is moved from `tld.registry` to `tld.base`.",
    DeprecationWarning,
)