]> git.ipfire.org Git - thirdparty/dnspython.git/commit
Use the selectors module. 538/head
authorBrian Wellington <bwelling@xbill.org>
Fri, 17 Jul 2020 22:46:04 +0000 (15:46 -0700)
committerBrian Wellington <bwelling@xbill.org>
Fri, 17 Jul 2020 22:46:04 +0000 (15:46 -0700)
commit147924d0a433968c639f75630009eff8a872a4d3
treeb7e7b2f4b124e478d24edea6143e4e02b286ccac
parent65d201ea8c53e03f8c7b732b21ea47f7e9188cab
Use the selectors module.

Previously, there was code to either use select.select or select.poll,
depending on OS.  This changes it to use the selectors module, using
either SelectSelector or PollSelector, but sharing code otherwise.
dns/query.py
tests/test_query.py
tests/test_resolver.py