diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-07 22:34:58 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-07 22:34:58 (GMT) |
commit | 85310a50a998af645acf0657737076eb064452bb (patch) | |
tree | 6b263f4a66877a3f9d824ba2744f87e8dfbbb141 /Doc/library/selectors.rst | |
parent | c489e83432ef29c9c2a638c4ca290b308e5921e4 (diff) | |
download | cpython-85310a50a998af645acf0657737076eb064452bb.zip cpython-85310a50a998af645acf0657737076eb064452bb.tar.gz cpython-85310a50a998af645acf0657737076eb064452bb.tar.bz2 |
Issue #20505: Remove resolution and _granularity from selectors and asyncio
* Remove selectors.BaseSelector.resolution attribute
* Remove asyncio.BaseEventLoop._granularity attribute
Diffstat (limited to 'Doc/library/selectors.rst')
-rw-r--r-- | Doc/library/selectors.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/selectors.rst b/Doc/library/selectors.rst index 4c322bd..98377c8 100644 --- a/Doc/library/selectors.rst +++ b/Doc/library/selectors.rst @@ -98,10 +98,6 @@ below: :class:`BaseSelector` and its concrete implementations support the :term:`context manager` protocol. - .. attribute:: resolution - - Resolution of the selector in seconds. - .. method:: register(fileobj, events, data=None) Register a file object for selection, monitoring it for I/O events. |