diff options
author | des <des@FreeBSD.org> | 2015-01-02 17:31:36 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2015-01-02 17:31:36 +0000 |
commit | 63bb89eccfead7fdbe9aaab3df7eeca0ff1fbc02 (patch) | |
tree | 7e110cb938b4f1a0c7a7f5bbbfc0a682ab32c4b6 /libunbound/python/examples/idn-lookup.py | |
parent | 6979769c22a971f35938b2ca806684fe7214eeb4 (diff) | |
download | FreeBSD-src-63bb89eccfead7fdbe9aaab3df7eeca0ff1fbc02.zip FreeBSD-src-63bb89eccfead7fdbe9aaab3df7eeca0ff1fbc02.tar.gz |
import unbound 1.5.0
Diffstat (limited to 'libunbound/python/examples/idn-lookup.py')
-rw-r--r-- | libunbound/python/examples/idn-lookup.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libunbound/python/examples/idn-lookup.py b/libunbound/python/examples/idn-lookup.py index 7cfdc9e..2170637 100644 --- a/libunbound/python/examples/idn-lookup.py +++ b/libunbound/python/examples/idn-lookup.py @@ -43,20 +43,20 @@ ctx.resolvconf("/etc/resolv.conf") #The unicode IDN string is automatically converted (if necessary) status, result = ctx.resolve(u"www.háčkyčárky.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN) if status == 0 and result.havedata: - print "Result:" - print " raw data:", result.data + print("Result:") + print(" raw data:", result.data) for k in result.data.address_list: - print " address:%s" % k + print(" address:%s" % k) status, result = ctx.resolve(u"háčkyčárky.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN) if status == 0 and result.havedata: - print "Result:" - print " raw data:", result.data + print("Result:") + print(" raw data:", result.data) for k in result.data.mx_list_idn: - print " priority:%d address:%s" % k + print(" priority:%d address:%s" % k) status, result = ctx.resolve(unbound.reverse('217.31.204.66')+'.in-addr.arpa', unbound.RR_TYPE_PTR, unbound.RR_CLASS_IN) if status == 0 and result.havedata: - print "Result.data:", result.data + print("Result.data:", result.data) for k in result.data.domain_list_idn: - print " dname:%s" % k + print(" dname:%s" % k) |