index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
selectmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-108765: Python.h no longer includes <unistd.h> (#108783)
Victor Stinner
2023-09-02
1
-0/+3
*
gh-107913: Fix possible losses of OSError error codes (GH-107930)
Serhiy Storchaka
2023-08-26
1
-2/+2
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-17/+18
*
gh-106316: Remove pytime.h header file (#106317)
Victor Stinner
2023-07-01
1
-0/+1
*
gh-98836: Extend PyUnicode_FromFormat() (GH-98838)
Serhiy Storchaka
2023-05-21
1
-4/+1
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-102255: Improve build support for Windows API partitions (GH-102256)
Max Bachmann
2023-03-09
1
-2/+4
*
gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513)
Victor Stinner
2022-11-16
1
-2/+1
*
gh-95174: Handle missing dup() and constants in WASI (GH-95229)
Christian Heimes
2022-07-26
1
-0/+5
*
bpo-40280: select: Use NULL for empty fdset (GH-31865)
Christian Heimes
2022-03-14
1
-1/+6
*
bpo-41857: mention timeout argument units in select.poll() and select.depoll(...
Zane Bitter
2022-01-20
1
-2/+6
*
bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)
Victor Stinner
2022-01-11
1
-1/+6
*
bpo-41710: Add private _PyDeadline_Get() function (GH-28674)
Victor Stinner
2021-10-01
1
-13/+16
*
bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)
Victor Stinner
2021-09-30
1
-1/+1
*
bpo-43916: select.devpoll uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25751)
Victor Stinner
2021-04-30
1
-9/+1
*
bpo-43916: select.poll uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25750)
Erlend Egeberg Aasland
2021-04-30
1
-13/+4
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-2/+2
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-9/+9
*
bpo-1635741: Port select module to multiphase init (GH-23409)
Christian Heimes
2020-11-21
1
-82/+105
*
bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)
Serhiy Storchaka
2020-10-26
1
-5/+8
*
bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes"...
Serhiy Storchaka
2020-10-09
1
-19/+0
*
bpo-31938: Fix default-value signatures of several functions in the select mo...
Anthony Sottile
2020-06-23
1
-8/+8
*
bpo-32604: Fix reference leak in select module (GH-20600)
Victor Stinner
2020-06-03
1
-2/+0
*
bpo-38580: Document that select() accepts iterables, not just sequences (GH-1...
Jakub Stasiak
2020-05-25
1
-3/+3
*
bpo-39740: Early declare devpoll_methods to support old compilers (GH-19281)
Batuhan Taskaya
2020-05-16
1
-0/+2
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-39968: Convert extension modules' macros of get_module_state() to inline ...
Hai Shi
2020-03-16
1
-23/+30
*
bpo-39239: epoll.unregister() no longer ignores EBADF (GH-17882)
Victor Stinner
2020-01-07
1
-5/+0
*
Fix a compile warning in selectmodule.c. (GH-16617)
Xiang Zhang
2019-10-07
1
-1/+1
*
bpo-38116: Convert select module to PEP-384 (#15971)
Dino Viehland
2019-09-14
1
-242/+207
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-1/+1
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-10/+10
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-3/+5
*
bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)
Zackery Spytz
2018-12-08
1
-8/+2
*
bpo-35310: Clear select() lists before returning upon EINTR (GH-10877)
Oran Avraham
2018-12-05
1
-0/+4
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-3/+3
*
bpo-29386: Pass -1 to epoll_wait() when timeout is < -1 (GH-9040)
Berker Peksag
2018-09-11
1
-8/+15
*
bpo-34419: selectmodule.c does not compile on HP-UX due to bpo-31938 (GH-8796)
Michael Osipov
2018-08-17
1
-3/+1
*
bpo-20260: Implement non-bitwise unsigned int converters for Argument Clinic....
Serhiy Storchaka
2018-07-26
1
-26/+8
*
bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265)
Tal Einat
2018-06-30
1
-574/+659
*
bpo-32568: make select.epoll() and its docs consistent (#7840)
Tal Einat
2018-06-30
1
-4/+6
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-6/+6
*
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
oldk
2018-02-02
1
-2/+2
*
bpo-28914: Fix compilation of select on Android (#5447)
Victor Stinner
2018-01-30
1
-0/+3
*
bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...
stratakis
2017-11-02
1
-21/+1
*
bpo-31893: Fix errors in b9052a0f91d2e83bbc27267247a5920c82b242a3. (#4196)
Serhiy Storchaka
2017-10-31
1
-4/+4
*
bpo-31893: Fixed select.kqueue(). (#4166)
Serhiy Storchaka
2017-10-31
1
-47/+71
*
bpo-31334: Fix timeout in select.poll.poll() (GH-3277)
Riccardo Coccioli
2017-10-17
1
-9/+16
*
bpo-31786: Make functions in the select module blocking when timeout is a sma...
Pablo Galindo
2017-10-17
1
-8/+8
*
bpo-30058: Fixed buffer overflow in select.kqueue.control(). (#1095)
Serhiy Storchaka
2017-10-12
1
-16/+13
[next]