diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-05-31 16:38:19 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-05-31 16:38:21 +0200 |
commit | 431397abfaf37b28c6981242d7fd59d8e520c8ec (patch) | |
tree | fa324d2f9f02668a6d56d2e4d195a59ab1d3710e /external/unbound/libunbound/python/examples/async-lookup.py | |
parent | Merge pull request #301 (diff) | |
parent | update libunbound (diff) | |
download | monero-431397abfaf37b28c6981242d7fd59d8e520c8ec.tar.xz |
Merge pull request #302
6a11907 update libunbound (Riccardo Spagni)
Diffstat (limited to 'external/unbound/libunbound/python/examples/async-lookup.py')
-rw-r--r-- | external/unbound/libunbound/python/examples/async-lookup.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/external/unbound/libunbound/python/examples/async-lookup.py b/external/unbound/libunbound/python/examples/async-lookup.py index cbb8ea02d..936be3218 100644 --- a/external/unbound/libunbound/python/examples/async-lookup.py +++ b/external/unbound/libunbound/python/examples/async-lookup.py @@ -32,6 +32,7 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ''' +from __future__ import print_function import unbound import time @@ -39,9 +40,9 @@ ctx = unbound.ub_ctx() ctx.resolvconf("/etc/resolv.conf") def call_back(my_data,status,result): - print("Call_back:", my_data) + print("Call_back:", sorted(my_data)) if status == 0 and result.havedata: - print("Result:", result.data.address_list) + print("Result:", sorted(result.data.address_list)) my_data['done_flag'] = True |