Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265) | Tal Einat | 2018-06-30 | 1 | -1/+1 |
| | |||||
* | bpo-32568: make select.epoll() and its docs consistent (#7840) | Tal Einat | 2018-06-30 | 1 | -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 Khurana | 2017-12-06 | 1 | -1/+1 |
| | |||||
* | bpo-30047: Fix a typo in Doc/library/select.rst (#1086) | NAKAMURA Osamu | 2017-04-12 | 1 | -1/+1 |
| | |||||
* | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
|\ | |||||
| * | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 |
| | | |||||
* | | Issue #20100: Merge from 3.5 | Berker Peksag | 2016-09-11 | 1 | -3/+5 |
|\ \ | |/ | |||||
| * | Issue #20100: Clarify that passing flags to epoll() has no effect | Berker Peksag | 2016-09-11 | 1 | -3/+5 |
| | | |||||
* | | Issue #27567: Expose the POLLRDHUP constant in the select module | Berker Peksag | 2016-07-19 | 1 | -0/+3 |
| | | |||||
* | | add EPOLLEXCLUSIVE | Benjamin Peterson | 2016-07-18 | 1 | -32/+37 |
| | | |||||
* | | expose EPOLLRDHUP (closes #27567) | Benjamin Peterson | 2016-07-18 | 1 | -0/+3 |
|/ | |||||
* | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -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 Storchaka | 2016-05-07 | 1 | -1/+1 |
| | |||||
* | Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-31 | 1 | -0/+6 |
| | |||||
* | Issue #23485: select.kqueue.control() is now retried when interrupted by a ↵ | Victor Stinner | 2015-03-31 | 1 | -0/+6 |
| | | | | signal | ||||
* | Issue #23485: select.epoll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-30 | 1 | -0/+6 |
| | |||||
* | Issue #23485: select.poll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-30 | 1 | -0/+6 |
| | |||||
* | Issue #23485: select.select() is now retried automatically with the recomputed | Victor Stinner | 2015-03-30 | 1 | -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.4 | Georg Brandl | 2014-10-29 | 1 | -4/+1 |
|\ | |||||
| * | Fixing broken links in doc, part 3: the rest | Georg Brandl | 2014-10-29 | 1 | -4/+1 |
| | | |||||
* | | Fix Issue #21528 - Fix documentation typos | Donald Stufft | 2014-05-20 | 1 | -1/+1 |
|/ | |||||
* | #16716: remove deprecation warning | Andrew Svetlov | 2014-04-01 | 1 | -4/+0 |
| | |||||
* | Fix the doc: add deprecation warning in select module. | Andrew Svetlov | 2014-04-01 | 1 | -1/+5 |
| | |||||
* | small grammar fix. | Georg Brandl | 2014-01-12 | 1 | -1/+1 |
| | |||||
* | whatsnew: epoll supports with. | R David Murray | 2013-12-31 | 1 | -3/+8 |
| | | | | Also reworded the description of the feature in the docs. | ||||
* | Issue #16853: Mention the new selectors module in the select module | Victor Stinner | 2013-09-04 | 1 | -0/+8 |
| | |||||
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handles | Victor Stinner | 2013-08-28 | 1 | -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 Storchaka | 2013-08-24 | 1 | -16/+16 |
|\ | |||||
| * | Issue #18757: Improved cross-references in the concurrent package. | Serhiy Storchaka | 2013-08-24 | 1 | -16/+16 |
| | | |||||
* | | Close #18794: Add a fileno() method and a closed attribute to select.devpoll | Victor Stinner | 2013-08-22 | 1 | -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 Pitrou | 2012-12-15 | 1 | -1/+4 |
|/ | | | | Patch by Serhiy Storchaka. | ||||
* | Fix a couple of versionadded/versionchanged related markup errors. | Georg Brandl | 2012-06-24 | 1 | -1/+0 |
| | |||||
* | Restore [] where default arguments are not keywords | Hynek Schlawack | 2012-05-22 | 1 | -1/+1 |
|\ | |||||
| * | Restore [] where default arguments are not keywords | Hynek Schlawack | 2012-05-22 | 1 | -1/+1 |
| | | | | | | | | Reverts some changes of d13fdd97cc8e. | ||||
* | | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-21 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-21 | 1 | -2/+2 |
| | | |||||
* | | add a flags parameter to select.epoll | Benjamin Peterson | 2011-12-27 | 1 | -5/+12 |
| | | |||||
* | | reST fixes for /dev/poll | Jesus Cea | 2011-11-15 | 1 | -1/+2 |
| | | |||||
* | | Issue #6397: Support '/dev/poll' polling objects in select module, under ↵ | Jesus Cea | 2011-11-14 | 1 | -1/+83 |
| | | | | | | | | Solaris & derivatives. | ||||
* | | Minimal update of select docs for PEP 3151. | Antoine Pitrou | 2011-10-12 | 1 | -8/+4 |
|/ | |||||
* | Fix the description of PIPE_BUF | Antoine Pitrou | 2011-01-25 | 1 | -1/+1 |
| | |||||
* | Fix the doc for PIPE_BUF | Antoine Pitrou | 2011-01-25 | 1 | -3/+5 |
| | |||||
* | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 1 | -12/+12 |
| | |||||
* | Add cross-references to the glossary entry for file objects. | Antoine Pitrou | 2010-09-15 | 1 | -5/+6 |
| | |||||
* | Document the extra epoll flags | Jean-Paul Calderone | 2010-07-18 | 1 | -5/+5 |
| | |||||
* | There is no method named "register(fd, eventmask)"; fix markup to just ↵ | Jean-Paul Calderone | 2010-07-18 | 1 | -1/+1 |
| | | | | indicate this is code. | ||||
* | #9258: fix copy-paste errors. | Georg Brandl | 2010-07-14 | 1 | -3/+3 |
| | |||||
* | Merged revisions ↵ | Benjamin Peterson | 2009-12-31 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 76847,76851,76869,76882,76891-76892,76924,77007,77070,77092,77096,77120,77126,77155 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76847 | benjamin.peterson | 2009-12-14 21:25:27 -0600 (Mon, 14 Dec 2009) | 1 line adverb ........ r76851 | benjamin.peterson | 2009-12-15 21:28:52 -0600 (Tue, 15 Dec 2009) | 1 line remove lib2to3 resource ........ r76869 | vinay.sajip | 2009-12-17 08:52:00 -0600 (Thu, 17 Dec 2009) | 1 line Issue #7529: logging: Minor correction to documentation. ........ r76882 | georg.brandl | 2009-12-19 11:30:28 -0600 (Sat, 19 Dec 2009) | 1 line #7527: use standard versionadded tags. ........ r76891 | georg.brandl | 2009-12-19 12:16:31 -0600 (Sat, 19 Dec 2009) | 1 line #7479: add note about function availability on Unices. ........ r76892 | georg.brandl | 2009-12-19 12:20:18 -0600 (Sat, 19 Dec 2009) | 1 line #7480: remove tautology. ........ r76924 | georg.brandl | 2009-12-20 08:28:05 -0600 (Sun, 20 Dec 2009) | 1 line Small indentation fix. ........ r77007 | gregory.p.smith | 2009-12-23 03:31:11 -0600 (Wed, 23 Dec 2009) | 3 lines Fix possible integer overflow in lchown and fchown functions. For issue1747858. ........ r77070 | amaury.forgeotdarc | 2009-12-27 14:06:44 -0600 (Sun, 27 Dec 2009) | 2 lines Fix a typo in comment ........ r77092 | georg.brandl | 2009-12-28 02:48:24 -0600 (Mon, 28 Dec 2009) | 1 line #7404: remove reference to non-existing example files. ........ r77096 | benjamin.peterson | 2009-12-28 14:51:17 -0600 (Mon, 28 Dec 2009) | 1 line document new fix_callable behavior ........ r77120 | georg.brandl | 2009-12-29 15:09:17 -0600 (Tue, 29 Dec 2009) | 1 line #7595: fix typo in argument default constant. ........ r77126 | amaury.forgeotdarc | 2009-12-29 17:06:17 -0600 (Tue, 29 Dec 2009) | 2 lines #7579: Add docstrings to the msvcrt module ........ r77155 | georg.brandl | 2009-12-30 13:03:00 -0600 (Wed, 30 Dec 2009) | 1 line We only support Windows NT derivatives now. ........ | ||||
* | More versionadded/versionchanged fixes | Mark Dickinson | 2009-10-01 | 1 | -1/+1 |
| | |||||
* | Switch more function arguments docs to new-style. | Georg Brandl | 2009-09-02 | 1 | -2/+1 |
| |