]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)
authorVictor Stinner <vstinner@python.org>
Mon, 9 Dec 2019 14:02:03 +0000 (15:02 +0100)
committerGitHub <noreply@github.com>
Mon, 9 Dec 2019 14:02:03 +0000 (15:02 +0100)
commit82b4950b5e92bec343a436b3f9c116400b66e1b9
tree4fb4056fbcaac4ada1e88811c4d736f30cdfeae7
parent0131aba5ae20d704b972ecd2ef0fc6c9e370a1b3
bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)

Fix asyncio when the ssl module is missing: only check for
ssl.SSLSocket instance if the ssl module is available.
Lib/asyncio/selector_events.py
Misc/NEWS.d/next/Library/2019-12-09-14-40-09.bpo-39006.v4VsPg.rst [new file with mode: 0644]