diff options
author | Yury Selivanov <yury@magic.io> | 2018-06-05 12:59:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 12:59:58 (GMT) |
commit | 415bc46a78e785f357c8960ae70f18a6b6cccbb6 (patch) | |
tree | 9b99fb2ad8eb0d343d1e3c8e061881ed5e657b9d /Misc | |
parent | e9e397605789b2a67b67558fbbe756b7b88934f5 (diff) | |
download | cpython-415bc46a78e785f357c8960ae70f18a6b6cccbb6.zip cpython-415bc46a78e785f357c8960ae70f18a6b6cccbb6.tar.gz cpython-415bc46a78e785f357c8960ae70f18a6b6cccbb6.tar.bz2 |
bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403)
In addition to that, mark SSLTransport as "closed" in its "abort()" method to prevent bogus warnings.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-06-04-13-46-39.bpo-33769.D_pxYz.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-06-04-13-46-39.bpo-33769.D_pxYz.rst b/Misc/NEWS.d/next/Library/2018-06-04-13-46-39.bpo-33769.D_pxYz.rst new file mode 100644 index 0000000..9a124fa --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-06-04-13-46-39.bpo-33769.D_pxYz.rst @@ -0,0 +1,2 @@ +asyncio/start_tls: Fix error message; cancel callbacks in case of an +unhandled error; mark SSLTransport as closed if it is aborted. |