Skip to content

Commit

Permalink
pythongh-98539: Make _SSLTransportProtocol.abort() safe to call when …
Browse files Browse the repository at this point in the history
…closed (python#104474)
  • Loading branch information
Dreamsorcerer committed May 14, 2023
1 parent 88c5c58 commit fb8739f
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit fb8739f

Please sign in to comment.