summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-07-26 15:32:25 (GMT)
committerGitHub <noreply@github.com>2020-07-26 15:32:25 (GMT)
commit6e4975a1c79d8433d9d5b50ff1c655b5b5a2acd2 (patch)
treea99edf6670355ef38928d7be852bbb410a614666 /Misc/NEWS.d/next/Library
parent41d1c04f73185c1238680142aa1a81f54f2bf4a4 (diff)
downloadcpython-6e4975a1c79d8433d9d5b50ff1c655b5b5a2acd2.zip
cpython-6e4975a1c79d8433d9d5b50ff1c655b5b5a2acd2.tar.gz
cpython-6e4975a1c79d8433d9d5b50ff1c655b5b5a2acd2.tar.bz2
bpo-41182 selector: use DefaultSelector based upon implementation (GH-21257)
On some platform such as VMware ESXi, DefaultSelector fails to detect selector due to default value. This fix adds a check and uses the correct selector depending upon select implementation and actual call. Fixes: [bpo-41182]() Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> (cherry picked from commit bcd47837a9bf4806e559b40df73869493efcce27) Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r--Misc/NEWS.d/next/Library/2020-07-01-17-33-50.bpo-41182.FPFI0N.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-07-01-17-33-50.bpo-41182.FPFI0N.rst b/Misc/NEWS.d/next/Library/2020-07-01-17-33-50.bpo-41182.FPFI0N.rst
new file mode 100644
index 0000000..ae31db5
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-07-01-17-33-50.bpo-41182.FPFI0N.rst
@@ -0,0 +1 @@
+selector: use DefaultSelector based upon implementation