Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: telemetry/third_party/webpagereplay/third_party/dns/__init__.py

Issue 2210063003: Rename third_party/webpagereplay to third_party/web-page-replay (Closed) Base URL: https://github.com/catapult-project/catapult@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (C) 2003-2007, 2009 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 'inet',
26 'ipv4',
27 'ipv6',
28 'message',
29 'name',
30 'namedict',
31 'node',
32 'opcode',
33 'query',
34 'rcode',
35 'rdata',
36 'rdataclass',
37 'rdataset',
38 'rdatatype',
39 'renderer',
40 'resolver',
41 'reversename',
42 'rrset',
43 'set',
44 'tokenizer',
45 'tsig',
46 'tsigkeyring',
47 'ttl',
48 'rdtypes',
49 'update',
50 'version',
51 'zone',
52 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698