diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2022-02-22 23:39:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 23:39:24 (GMT) |
commit | cff4d5c5d29528299ec1ac5b3b3a6f7735577c01 (patch) | |
tree | 0c213ceba56abca4e3e70e68fd7e67f5aa858c46 | |
parent | 66b3cd7063322a9f5c922a97bbd06fdb98309999 (diff) | |
download | cpython-cff4d5c5d29528299ec1ac5b3b3a6f7735577c01.zip cpython-cff4d5c5d29528299ec1ac5b3b3a6f7735577c01.tar.gz cpython-cff4d5c5d29528299ec1ac5b3b3a6f7735577c01.tar.bz2 |
Inherit asyncio proactor datagram transport from asyncio.DatagramTransport (#31512)
-rw-r--r-- | Lib/asyncio/proactor_events.py | 3 | ||||
-rw-r--r-- | Lib/test/test_asyncio/test_proactor_events.py | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-02-23-00-55-59.bpo-44886.I40Mbr.rst | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/Lib/asyncio/proactor_events.py b/Lib/asyncio/proactor_events.py index ae59f30..43d5e70 100644 --- a/Lib/asyncio/proactor_events.py +++ b/Lib/asyncio/proactor_events.py @@ -452,7 +452,8 @@ class _ProactorWritePipeTransport(_ProactorBaseWritePipeTransport): self.close() -class _ProactorDatagramTransport(_ProactorBasePipeTransport): +class _ProactorDatagramTransport(_ProactorBasePipeTransport, + transports.DatagramTransport): max_size = 256 * 1024 def __init__(self, loop, sock, protocol, address=None, waiter=None, extra=None): diff --git a/Lib/test/test_asyncio/test_proactor_events.py b/Lib/test/test_asyncio/test_proactor_events.py index 45af810..6757382 100644 --- a/Lib/test/test_asyncio/test_proactor_events.py +++ b/Lib/test/test_asyncio/test_proactor_events.py @@ -839,6 +839,7 @@ class BaseProactorEventLoopTests(test_utils.TestCase): def test_make_datagram_transport(self): tr = self.datagram_transport() self.assertIsInstance(tr, _ProactorDatagramTransport) + self.assertIsInstance(tr, asyncio.DatagramTransport) close_transport(tr) def test_datagram_loop_writing(self): diff --git a/Misc/NEWS.d/next/Library/2022-02-23-00-55-59.bpo-44886.I40Mbr.rst b/Misc/NEWS.d/next/Library/2022-02-23-00-55-59.bpo-44886.I40Mbr.rst new file mode 100644 index 0000000..be223dd --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-02-23-00-55-59.bpo-44886.I40Mbr.rst @@ -0,0 +1,2 @@ +Inherit asyncio proactor datagram transport from +:class:`asyncio.DatagramTransport`. |