summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/selectmodule.c.h
Commit message (Collapse)AuthorAgeFilesLines
* [3.10] bpo-41857: mention timeout argument units in select.poll() and ↵Tal Einat2022-01-211-1/+9
| | | | | | | select.depoll() doc-strings (GH-22406) (cherry picked from commit 27df7566bc19699b967e0e30d7808637b90141f6) Co-authored-by: Zane Bitter <zbitter@redhat.com>
* bpo-1635741: Port select module to multiphase init (GH-23409)Christian Heimes2020-11-211-3/+3
|
* bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for ↵Serhiy Storchaka2020-10-091-10/+10
| | | | "fildes". (GH-22620)
* bpo-31938: Fix default-value signatures of several functions in the select ↵Anthony Sottile2020-06-231-5/+9
| | | | module (GH-21066)
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-261-41/+1
| | | | Only __index__ should be used to make integer conversions lossless.
* bpo-38580: Document that select() accepts iterables, not just sequences ↵Jakub Stasiak2020-05-251-2/+2
| | | | (GH-16832)
* bpo-38116: Convert select module to PEP-384 (#15971)Dino Viehland2019-09-141-3/+3
| | | | | | | | | | * Convert select module to PEP-384 Summary: Do the necessary versions to be Pyro-compatible, including migrating `PyType_Ready` to `PyType_FromSpec` and moving static data into a new `_selectstate` struct. * 📜🤖 Added by blurb_it. * Fixup Mac OS/X build
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. ↵Serhiy Storchaka2019-03-141-16/+103
| | | | (GH-12058)
* bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520)Serhiy Storchaka2019-01-111-13/+36
| | | | | Use _PyArg_CheckPositional() and inlined code instead of PyArg_UnpackTuple() and _PyArg_UnpackStack() if all parameters are positional and use the "object" converter.
* bpo-35582: Argument Clinic: inline parsing code for positional parameters. ↵Serhiy Storchaka2019-01-111-11/+57
| | | | (GH-11313)
* bpo-23867: Argument Clinic: inline parsing code for a single positional ↵Serhiy Storchaka2018-12-251-5/+17
| | | | parameter. (GH-9689)
* bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ↵Serhiy Storchaka2018-11-271-14/+14
| | | | | | | | (GH-6748) Fix invalid function cast warnings with gcc 8 for method conventions different from METH_NOARGS, METH_O and METH_VARARGS in Argument Clinic generated code.
* bpo-20260: Implement non-bitwise unsigned int converters for Argument ↵Serhiy Storchaka2018-07-261-5/+5
| | | | Clinic. (GH-8434)
* bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265)Tal Einat2018-06-301-0/+1050