diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-07-19 18:09:26 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-07-19 18:09:26 (GMT) |
commit | fe8d9666575284c10b6bf803b9c446523da1d23a (patch) | |
tree | 4b982695184f9f5f7d073d6a12f7c2e5a0f3f190 /Doc/library/select.rst | |
parent | a1ea9c813f3adbab63392f6bfcb6a729ff272515 (diff) | |
download | cpython-fe8d9666575284c10b6bf803b9c446523da1d23a.zip cpython-fe8d9666575284c10b6bf803b9c446523da1d23a.tar.gz cpython-fe8d9666575284c10b6bf803b9c446523da1d23a.tar.bz2 |
Issue #27567: Expose the POLLRDHUP constant in the select module
Diffstat (limited to 'Doc/library/select.rst')
-rw-r--r-- | Doc/library/select.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/select.rst b/Doc/library/select.rst index 4fafb11..5494eef 100644 --- a/Doc/library/select.rst +++ b/Doc/library/select.rst @@ -391,6 +391,9 @@ linearly scanned again. :c:func:`select` is O(highest file descriptor), while +-------------------+------------------------------------------+ | :const:`POLLHUP` | Hung up | +-------------------+------------------------------------------+ + | :const:`POLLRDHUP`| Stream socket peer closed connection, or | + | | shut down writing half of connection | + +-------------------+------------------------------------------+ | :const:`POLLNVAL` | Invalid request: descriptor not open | +-------------------+------------------------------------------+ |