https://github.com/python/cpython/commit/4c0d7bc52afcd6b34b1085a52bb33ae695f656e5
commit: 4c0d7bc52afcd6b34b1085a52bb33ae695f656e5
branch: main
author: yihong <[email protected]>
committer: kumaraditya303 <[email protected]>
date: 2025-09-16T08:48:41+05:30
summary:

gh-138958: remove unused variable in Lib/asyncio/streams.py (#138959)

files:
M Lib/asyncio/streams.py

diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py
index c8c01f36474183..59e22f523a85c5 100644
--- a/Lib/asyncio/streams.py
+++ b/Lib/asyncio/streams.py
@@ -214,7 +214,6 @@ def _stream_reader(self):
         return self._stream_reader_wr()
 
     def _replace_transport(self, transport):
-        loop = self._loop
         self._transport = transport
         self._over_ssl = transport.get_extra_info('sslcontext') is not None
 

_______________________________________________
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]

Reply via email to