Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed (
…GH-104474)

(cherry picked from commit fb8739f)

Co-authored-by: Sam Bull <git@sambull.org>
  • Loading branch information
Dreamsorcerer authored and miss-islington committed May 14, 2023
commit 04c1a3c08f4a9e39f8a4cf9f125fff33dfb676da
3 changes: 2 additions & 1 deletion Lib/asyncio/sslproto.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ def abort(self):
called with None as its argument.
"""
self._closed = True
self._ssl_protocol._abort()
if self._ssl_protocol is not None:
self._ssl_protocol._abort()

def _force_close(self, exc):
self._closed = True
Expand Down