s3-torture: let wait_lock() use cli_lock32() instead of cli_lock()
[Samba/gebeck_regimport.git] / lib / dnspython / examples / xfr.py
blob5cd6f55c06c7cb08f6f553b633bf759d6eaa5cf0
1 #!/usr/bin/env python
3 import dns.query
4 import dns.zone
6 z = dns.zone.from_xfr(dns.query.xfr('204.152.189.147', 'dnspython.org'))
7 names = z.nodes.keys()
8 names.sort()
9 for n in names:
10 print z[n].to_text(n)