Hello,

in branch python3, in dns/query.py, ligne 69:
event_list = pollable.poll(long(timeout * 1000))

Since long has been deprecated (and replaced by "int") in python 3
(see http://www.python.org/dev/peps/pep-0237/), this line doesn't build

It should simply be
event_list = pollable.poll(int(timeout * 1000))

-- 
Florent Le Coz
_______________________________________________
dnspython-bugs mailing list
[email protected]
http://howl.play-bow.org/mailman/listinfo.cgi/dnspython-bugs

Reply via email to