summaryrefslogtreecommitdiffstats
path: root/Doc/library/select.rst
Commit message (Collapse)AuthorAgeFilesLines
* [3.12] gh-106948: Docs: Disable links for C standard library functions, OS ↵Miss Islington (bot)2023-07-231-21/+21
| | | | | | | | utility functions and system calls (GH-107062) (#107154) (cherry picked from commit b447e19e720e6781025432a40eb72b1cc93ac944) Co-authored-by: Erlend E. Aasland <erlend@python.org> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* GH-103484: Fix redirected permanently URLs (#104001)Rafael Fontenelle2023-05-021-1/+1
| | | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
* Docs: Fix backtick errors found by sphinx-lint (#97998)Hugo van Kemenade2022-10-071-1/+1
| | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* gh-95451: Update docs for wasm32-emscripten and -wasi platforms (GH-95452)Christian Heimes2022-08-021-0/+1
| | | | | | Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Michael Droettboom <mdboom@gmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers ↵Ned Batchelder2022-07-051-2/+2
| | | | | (GH-94551) Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515)Serhiy Storchaka2021-09-221-2/+2
| | | | | | | Replace old names when they refer to actual versions of macOS. Keep historical names in references to older versions. Co-authored-by: Patrick Reader <_@pxeger.com>
* bpo-38580: Document that select() accepts iterables, not just sequences ↵Jakub Stasiak2020-05-251-3/+3
| | | | (GH-16832)
* bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882)Victor Stinner2020-01-071-0/+3
| | | | The select.epoll.unregister() method no longer ignores the EBADF error.
* bpo-34369: make kqueue.control() docs better reflect that timeout is ↵Tal Einat2019-07-111-3/+4
| | | | positional-only (GH-9499)
* bpo-35497: add versionadded tag for EPOLLEXCLUSIVE (GH-11162)Manjusaka2018-12-191-0/+3
|
* bpo-11233: Create availability directive for documentation (GH-9692)Cheryl Sabella2018-10-121-1/+3
| | | | | | Replace "Availability: xxx" with ".. availability:: xxx" in the doc. Original patch by Georg Brandl. Co-Authored-By: Georg Brandl <georg@python.org>
* bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265)Tal Einat2018-06-301-1/+1
|
* bpo-32568: make select.epoll() and its docs consistent (#7840)Tal Einat2018-06-301-1/+10
| | | | | | | | | | | | | * `flags` is indeed deprecated, but there is a validation on its value for backwards compatibility reasons. This adds mention of this in the docs. * The docs say that `sizehint` is deprecated and ignored, but it is still used when `epoll_create1()` is unavailable. This adds mention of this in the docs. * `sizehint=-1` is acceptable again, and is replaced with `FD_SETSIZE-1`. This is needed to have a default value available at the Python level, since `FD_SETSIZE` is not exposed to Python. (see: bpo-31938) * Reject `sizehint=0` since it is invalid to pass on to `epoll_create()`. The relevant tests have also been updated.
* bpo-25910: Fixes redirection from http to https (#4674)Sanyam Khurana2017-12-061-1/+1
|
* bpo-30047: Fix a typo in Doc/library/select.rst (#1086)NAKAMURA Osamu2017-04-121-1/+1
|
* Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
|\
| * Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
| |
* | Issue #20100: Merge from 3.5Berker Peksag2016-09-111-3/+5
|\ \ | |/
| * Issue #20100: Clarify that passing flags to epoll() has no effectBerker Peksag2016-09-111-3/+5
| |
* | Issue #27567: Expose the POLLRDHUP constant in the select moduleBerker Peksag2016-07-191-0/+3
| |
* | add EPOLLEXCLUSIVEBenjamin Peterson2016-07-191-32/+37
| |
* | expose EPOLLRDHUP (closes #27567)Benjamin Peterson2016-07-191-0/+3
|/
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+1
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
|
* Issue #23485: select.devpoll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-311-0/+6
|
* Issue #23485: select.kqueue.control() is now retried when interrupted by a ↵Victor Stinner2015-03-311-0/+6
| | | | signal
* Issue #23485: select.epoll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-301-0/+6
|
* Issue #23485: select.poll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-301-0/+6
|
* Issue #23485: select.select() is now retried automatically with the recomputedVictor Stinner2015-03-301-0/+7
| | | | | | | | | timeout when interrupted by a signal, except if the signal handler raises an exception. This change is part of the PEP 475. The asyncore and selectors module doesn't catch the InterruptedError exception anymore when calling select.select(), since this function should not raise InterruptedError anymore.
* merge with 3.4Georg Brandl2014-10-291-4/+1
|\
| * Fixing broken links in doc, part 3: the restGeorg Brandl2014-10-291-4/+1
| |
* | Fix Issue #21528 - Fix documentation typosDonald Stufft2014-05-201-1/+1
|/
* #16716: remove deprecation warningAndrew Svetlov2014-03-311-4/+0
|
* Fix the doc: add deprecation warning in select module.Andrew Svetlov2014-03-311-1/+5
|
* small grammar fix.Georg Brandl2014-01-121-1/+1
|
* whatsnew: epoll supports with.R David Murray2013-12-311-3/+8
| | | | Also reworded the description of the feature in the docs.
* Issue #16853: Mention the new selectors module in the select moduleVictor Stinner2013-09-041-0/+8
|
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-0/+13
| | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
* Issue #18757: Improved cross-references in the concurrent package.Serhiy Storchaka2013-08-231-16/+16
|\
| * Issue #18757: Improved cross-references in the concurrent package.Serhiy Storchaka2013-08-231-16/+16
| |
* | Close #18794: Add a fileno() method and a closed attribute to select.devpollVictor Stinner2013-08-211-0/+31
| | | | | | | | | | | | objects. Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue.
* | Issue #16488: epoll() objects now support the `with` statement.Antoine Pitrou2012-12-151-1/+4
|/ | | | Patch by Serhiy Storchaka.
* Fix a couple of versionadded/versionchanged related markup errors.Georg Brandl2012-06-241-1/+0
|
* Restore [] where default arguments are not keywordsHynek Schlawack2012-05-221-1/+1
|\
| * Restore [] where default arguments are not keywordsHynek Schlawack2012-05-221-1/+1
| | | | | | | | Reverts some changes of d13fdd97cc8e.
* | #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-211-2/+2
|\ \ | |/
| * #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-211-2/+2
| |
* | add a flags parameter to select.epollBenjamin Peterson2011-12-271-5/+12
| |
* | reST fixes for /dev/pollJesus Cea2011-11-151-1/+2
| |
* | Issue #6397: Support '/dev/poll' polling objects in select module, under ↵Jesus Cea2011-11-141-1/+83
| | | | | | | | Solaris & derivatives.