8000 [3.11] gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed (GH-104474) by miss-islington · Pull Request #104485 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.11] gh-98539: Make _SSLTransportProtocol.abort() safe to call when closed (GH-104474) #104485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 14, 2023
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
8000
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
0