https://github.com/python/cpython/commit/b0a4f6599a7d36cc08fe63d6f7d5d4dea64579f3
commit: b0a4f6599a7d36cc08fe63d6f7d5d4dea64579f3
branch: main
author: Kumar Aditya <[email protected]>
committer: kumaraditya303 <[email protected]>
date: 2025-03-18T15:41:43+05:30
summary:
gh-128002: fix tsan race in closing socket in `test_ssl` (#131397)
files:
M Lib/test/test_asyncio/test_ssl.py
diff --git a/Lib/test/test_asyncio/test_ssl.py
b/Lib/test/test_asyncio/test_ssl.py
index ac774307c7942b..986ecc2c5a964b 100644
--- a/Lib/test/test_asyncio/test_ssl.py
+++ b/Lib/test/test_asyncio/test_ssl.py
@@ -1849,16 +1849,14 @@ def stop(self):
pass
finally:
super().stop()
-
- def run(self):
- try:
- with self._sock:
- self._sock.setblocking(False)
- self._run()
- finally:
+ self._sock.close()
self._s1.close()
self._s2.close()
+ def run(self):
+ self._sock.setblocking(False)
+ self._run()
+
def _run(self):
while self._active:
if self._clients >= self._max_clients:
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]