summaryrefslogtreecommitdiffstats
path: root/Modules/selectmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-111233: Fix error checking in select extension module init (#111234)Nikita Sobolev2023-10-251-66/+84
* gh-108765: Python.h no longer includes <unistd.h> (#108783)Victor Stinner2023-09-021-0/+3
* gh-107913: Fix possible losses of OSError error codes (GH-107930)Serhiy Storchaka2023-08-261-2/+2
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-17/+18
* gh-106316: Remove pytime.h header file (#106317)Victor Stinner2023-07-011-0/+1
* gh-98836: Extend PyUnicode_FromFormat() (GH-98838)Serhiy Storchaka2023-05-211-4/+1
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-2/+4
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513)Victor Stinner2022-11-161-2/+1
* gh-95174: Handle missing dup() and constants in WASI (GH-95229)Christian Heimes2022-07-261-0/+5
* bpo-40280: select: Use NULL for empty fdset (GH-31865)Christian Heimes2022-03-141-1/+6
* bpo-41857: mention timeout argument units in select.poll() and select.depoll(...Zane Bitter2022-01-201-2/+6
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-111-1/+6
* bpo-41710: Add private _PyDeadline_Get() function (GH-28674)Victor Stinner2021-10-011-13/+16
* bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner2021-09-301-1/+1
* bpo-43916: select.devpoll uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25751)Victor Stinner2021-04-301-9/+1
* bpo-43916: select.poll uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25750)Erlend Egeberg Aasland2021-04-301-13/+4
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-2/+2
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-011-9/+9
* bpo-1635741: Port select module to multiphase init (GH-23409)Christian Heimes2020-11-211-82/+105
* bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)Serhiy Storchaka2020-10-261-5/+8
* bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes"...Serhiy Storchaka2020-10-091-19/+0
* bpo-31938: Fix default-value signatures of several functions in the select mo...Anthony Sottile2020-06-231-8/+8
* bpo-32604: Fix reference leak in select module (GH-20600)Victor Stinner2020-06-031-2/+0
* bpo-38580: Document that select() accepts iterables, not just sequences (GH-1...Jakub Stasiak2020-05-251-3/+3
* bpo-39740: Early declare devpoll_methods to support old compilers (GH-19281)Batuhan Taskaya2020-05-161-0/+2
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-39968: Convert extension modules' macros of get_module_state() to inline ...Hai Shi2020-03-161-23/+30
* bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882)Victor Stinner2020-01-071-5/+0
* Fix a compile warning in selectmodule.c. (GH-16617)Xiang Zhang2019-10-071-1/+1
* bpo-38116: Convert select module to PEP-384 (#15971)Dino Viehland2019-09-141-242/+207
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-081-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-10/+10
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-251-3/+5
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Zackery Spytz2018-12-081-8/+2
* bpo-35310: Clear select() lists before returning upon EINTR (GH-10877)Oran Avraham2018-12-051-0/+4
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-271-3/+3
* bpo-29386: Pass -1 to epoll_wait() when timeout is < -1 (GH-9040)Berker Peksag2018-09-111-8/+15
* bpo-34419: selectmodule.c does not compile on HP-UX due to bpo-31938 (GH-8796)Michael Osipov2018-08-171-3/+1
* bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic....Serhiy Storchaka2018-07-261-26/+8
* bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265)Tal Einat2018-06-301-574/+659
* bpo-32568: make select.epoll() and its docs consistent (#7840)Tal Einat2018-06-301-4/+6
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-291-6/+6
* bpo-32747: Remove trailing spaces in docstrings. (GH-5491)oldk2018-02-021-2/+2
* bpo-28914: Fix compilation of select on Android (#5447)Victor Stinner2018-01-301-0/+3
* bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...stratakis2017-11-021-21/+1
* bpo-31893: Fix errors in b9052a0f91d2e83bbc27267247a5920c82b242a3. (#4196)Serhiy Storchaka2017-10-311-4/+4
* bpo-31893: Fixed select.kqueue(). (#4166)Serhiy Storchaka2017-10-311-47/+71
* bpo-31334: Fix timeout in select.poll.poll() (GH-3277)Riccardo Coccioli2017-10-171-9/+16
* bpo-31786: Make functions in the select module blocking when timeout is a sma...Pablo Galindo2017-10-171-8/+8