c848e485813bb14badba05b2449436adbd85b1ee
[bbaumbach/samba-autobuild/.git] / third_party / dnspython / dns / __init__.py
1 # Copyright (C) 2003-2007, 2009, 2011 Nominum, Inc.
2 #
3 # Permission to use, copy, modify, and distribute this software and its
4 # documentation for any purpose with or without fee is hereby granted,
5 # provided that the above copyright notice and this permission notice
6 # appear in all copies.
7 #
8 # THE SOFTWARE IS PROVIDED "AS IS" AND NOMINUM DISCLAIMS ALL WARRANTIES
9 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL NOMINUM BE LIABLE FOR
11 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
14 # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15
16 """dnspython DNS toolkit"""
17
18 __all__ = [
19     'dnssec',
20     'e164',
21     'edns',
22     'entropy',
23     'exception',
24     'flags',
25     'hash',
26     'inet',
27     'ipv4',
28     'ipv6',
29     'message',
30     'name',
31     'namedict',
32     'node',
33     'opcode',
34     'query',
35     'rcode',
36     'rdata',
37     'rdataclass',
38     'rdataset',
39     'rdatatype',
40     'renderer',
41     'resolver',
42     'reversename',
43     'rrset',
44     'set',
45     'tokenizer',
46     'tsig',
47     'tsigkeyring',
48     'ttl',
49     'rdtypes',
50     'update',
51     'version',
52     'wiredata',
53     'zone',
54 ]