diff options
author | Victor Stinner <vstinner@python.org> | 2019-12-09 14:02:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-09 14:02:03 (GMT) |
commit | 82b4950b5e92bec343a436b3f9c116400b66e1b9 (patch) | |
tree | 4fb4056fbcaac4ada1e88811c4d736f30cdfeae7 /Misc | |
parent | 0131aba5ae20d704b972ecd2ef0fc6c9e370a1b3 (diff) | |
download | cpython-82b4950b5e92bec343a436b3f9c116400b66e1b9.zip cpython-82b4950b5e92bec343a436b3f9c116400b66e1b9.tar.gz cpython-82b4950b5e92bec343a436b3f9c116400b66e1b9.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-12-09-14-40-09.bpo-39006.v4VsPg.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-12-09-14-40-09.bpo-39006.v4VsPg.rst b/Misc/NEWS.d/next/Library/2019-12-09-14-40-09.bpo-39006.v4VsPg.rst new file mode 100644 index 0000000..8402845 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-12-09-14-40-09.bpo-39006.v4VsPg.rst @@ -0,0 +1,2 @@ +Fix asyncio when the ssl module is missing: only check for ssl.SSLSocket +instance if the ssl module is available. |