Move dnspython to third_party.
[samba.git] / lib / dnspython / examples / mx.py
diff --git a/lib/dnspython/examples/mx.py b/lib/dnspython/examples/mx.py
deleted file mode 100755 (executable)
index 3036e70..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/bin/env python
-
-import dns.resolver
-
-answers = dns.resolver.query('nominum.com', 'MX')
-for rdata in answers:
-    print 'Host', rdata.exchange, 'has preference', rdata.preference