diff options
author | idomic <michael.ido@gmail.com> | 2019-12-07 11:52:36 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-12-07 11:52:35 (GMT) |
commit | 892f9e0777f262d366d4747a54c33a1c15a49da6 (patch) | |
tree | 52089bed5e807ef347ac285472db604b90bfae46 /Misc | |
parent | 969ae7aca809a8dacafee04c261110eea0ac1945 (diff) | |
download | cpython-892f9e0777f262d366d4747a54c33a1c15a49da6.zip cpython-892f9e0777f262d366d4747a54c33a1c15a49da6.tar.gz cpython-892f9e0777f262d366d4747a54c33a1c15a49da6.tar.bz2 |
bpo-37404: Raising value error if an SSLSocket is passed to asyncio functions (GH-16457)
https://bugs.python.org/issue37404
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Build/2019-12-01-21-45-24.bpo-37404.cNsA7S.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2019-12-01-21-45-24.bpo-37404.cNsA7S.rst b/Misc/NEWS.d/next/Build/2019-12-01-21-45-24.bpo-37404.cNsA7S.rst new file mode 100644 index 0000000..067fc9d --- /dev/null +++ b/Misc/NEWS.d/next/Build/2019-12-01-21-45-24.bpo-37404.cNsA7S.rst @@ -0,0 +1,2 @@ +:mod:`asyncio` now raises :exc:`TyperError` when calling incompatible methods +with an :class:`ssl.SSLSocket` socket. Patch by Ido Michael. |