mirror of
https://github.com/python/cpython.git
synced 2026-01-05 23:12:38 +00:00
Remove redundant assignment in asyncio.streams.StreamReaderProtocol.connection_lost() (GH-137524)
The _stream_writer attribute was removed in a355f60 (gh-114914).
This commit is contained in:
parent
082f370cdd
commit
db8742e2b4
1 changed files with 0 additions and 1 deletions
|
|
@ -271,7 +271,6 @@ def connection_lost(self, exc):
|
|||
self._closed.set_exception(exc)
|
||||
super().connection_lost(exc)
|
||||
self._stream_reader_wr = None
|
||||
self._stream_writer = None
|
||||
self._task = None
|
||||
self._transport = None
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue