diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-25 13:56:48 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-25 13:56:48 (GMT) |
commit | 635fca9704b102a97233a3af18231a7b649d0169 (patch) | |
tree | 581707f774cffe719a80b08297f0bb9ce5eb342c /Doc | |
parent | 2041859f279423c06a707899b4a66e3f0aba3dfb (diff) | |
download | cpython-635fca9704b102a97233a3af18231a7b649d0169.zip cpython-635fca9704b102a97233a3af18231a7b649d0169.tar.gz cpython-635fca9704b102a97233a3af18231a7b649d0169.tar.bz2 |
Issue #20311: selectors: Add a resolution attribute to BaseSelector.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/selectors.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/selectors.rst b/Doc/library/selectors.rst index 98377c8..4c322bd 100644 --- a/Doc/library/selectors.rst +++ b/Doc/library/selectors.rst @@ -98,6 +98,10 @@ 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. |