mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
GH-90352: fix _SelectorDatagramTransport to inherit from DatagramTransport (#98844)
This commit is contained in:
parent
c0f2a5ef91
commit
9bdec0aa45
3 changed files with 6 additions and 1 deletions
|
@ -1126,7 +1126,7 @@ class _SelectorSocketTransport(_SelectorTransport):
|
|||
self._empty_waiter = None
|
||||
|
||||
|
||||
class _SelectorDatagramTransport(_SelectorTransport):
|
||||
class _SelectorDatagramTransport(_SelectorTransport, transports.DatagramTransport):
|
||||
|
||||
_buffer_factory = collections.deque
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue