Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/dns/__init__.py: 75%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# Copyright (C) Dnspython Contributors, see LICENSE for text of ISC license
3# Copyright (C) 2003-2007, 2009, 2011 Nominum, Inc.
4#
5# Permission to use, copy, modify, and distribute this software and its
6# documentation for any purpose with or without fee is hereby granted,
7# provided that the above copyright notice and this permission notice
8# appear in all copies.
9#
10# THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
11# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
13# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
16# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18"""dnspython DNS toolkit"""
20__all__ = [
21 "asyncbackend",
22 "asyncquery",
23 "asyncresolver",
24 "btree",
25 "btreezone",
26 "dnssec",
27 "dnssecalgs",
28 "dnssectypes",
29 "e164",
30 "edns",
31 "entropy",
32 "exception",
33 "flags",
34 "immutable",
35 "inet",
36 "ipv4",
37 "ipv6",
38 "message",
39 "name",
40 "namedict",
41 "node",
42 "opcode",
43 "query",
44 "quic",
45 "rcode",
46 "rdata",
47 "rdataclass",
48 "rdataset",
49 "rdatatype",
50 "renderer",
51 "resolver",
52 "reversename",
53 "rrset",
54 "serial",
55 "set",
56 "tokenizer",
57 "transaction",
58 "tsig",
59 "tsigkeyring",
60 "ttl",
61 "rdtypes",
62 "update",
63 "version",
64 "versioned",
65 "wire",
66 "xfr",
67 "zone",
68 "zonetypes",
69 "zonefile",
70]
72from dns.version import version as __version__ # noqa