Home
last modified time | relevance | path

Searched refs:BaseSelector (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Doc/library/
Dselectors.rst20 It defines a :class:`BaseSelector` abstract base class, along with several
47 BaseSelector
72 mask and attached data. It is returned by several :class:`BaseSelector`
93 .. class:: BaseSelector
95 A :class:`BaseSelector` is used to wait for I/O event readiness on multiple
102 :class:`BaseSelector` and its concrete implementations support the
134 This is equivalent to :meth:`BaseSelector.unregister(fileobj)` followed
135 by :meth:`BaseSelector.register(fileobj, events, data)`, except that it
/external/python/cpython3/Lib/
Dselectors.py80 class BaseSelector(metaclass=ABCMeta): class
206 class _BaseSelectorImpl(BaseSelector):
/external/python/cpython3/Lib/test/test_asyncio/
Dutils.py282 class TestSelector(selectors.BaseSelector):
/external/python/cpython3/Lib/test/
Dtest_telnetlib.py118 class MockSelector(selectors.BaseSelector):
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst1011 selectors.BaseSelector.get_key() now raises a RuntimeError if the selector
1012 is closed. And selectors.BaseSelector.close() now clears its internal
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1850 The :meth:`~selectors.BaseSelector.modify` methods of classes
/external/python/cpython3/Misc/
DHISTORY1048 - Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal
2633 - Issue #20311: selectors: Add a resolution attribute to BaseSelector.