gh-156698: Fix _ProactorDatagramTransport never resumes a paused protocol after a write error - #156718
gh-156698: Fix _ProactorDatagramTransport never resumes a paused protocol after a write error#156718graingert wants to merge 8 commits into
_ProactorDatagramTransport never resumes a paused protocol after a write error#156718Conversation
_ProactorDatagramTransport never resumes a paused protocol after a write error
_ProactorDatagramTransport never resumes a paused protocol after a write error_ProactorDatagramTransport never resumes a paused protocol after a write error
a3b797a to
800498e
Compare
800498e to
3006d6e
Compare
…ror-hang # Conflicts: # Lib/test/test_asyncio/test_events.py
|
Two comments:
|
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
|
the |
|
I can't add |
| except OSError as exc: | ||
| self._protocol.error_received(exc) | ||
| if self._buffer: | ||
| if self._buffer or self._closing: |
There was a problem hiding this comment.
@kumaraditya303 this change doesn't make sense without the other changes from #156921
It would be easier if I could get that PR that fixes both issues reviewed in one go
Fixes #156698
_ProactorDatagramTransportnever resumes a paused protocol after a write error #156698