summaryrefslogtreecommitdiffstats
path: root/Modules/clinic
Commit message (Expand)AuthorAgeFilesLines
* GH-111804: Drop posix.fallocate() under WASI (GH-111869)Brett Cannon2023-11-091-3/+3
* socket: Update generated AC code (#111853)Jelle Zijlstra2023-11-081-2/+7
* gh-111662: Update socket module to use AC for optimizing performance (gh-111661)Bogdan Romanyuk2023-11-081-1/+164
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-0714-111/+596
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-031-33/+1
* gh-111482: Use Argument Clinic for clock_gettime() (#111641)Victor Stinner2023-11-021-0/+74
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-0114-596/+111
* gh-67565: Remove redundant C-contiguity checks (GH-105521)Furkan Onder2023-10-2311-271/+11
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-202-7/+12
* gh-85283: Build resource extension with limited C API (#110989)Victor Stinner2023-10-171-7/+11
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-1761-61/+140
* gh-85283: Fix Argument Clinic for md5 extension (#110976)Victor Stinner2023-10-171-2/+2
* gh-85283: Build md5 extension with limited C API (#110967)Victor Stinner2023-10-171-56/+6
* gh-110864: Fix _PyArg_UnpackKeywordsWithVararg overwriting vararg with NULL (...Nikita Sobolev2023-10-161-1/+71
* gh-108277: Add os.timerfd_create() function (#108382)Masaru Tsuchiyama2023-10-071-1/+391
* gh-82367: Use `FindFirstFile` Win32 API in `ntpath.realpath()` (GH-110298)박문식2023-10-051-1/+39
* gh-88402: Add new sysconfig variables on Windows (GH-110049)Sam Gross2023-10-041-0/+22
* gh-109649: Add os.process_cpu_count() function (#109907)Victor Stinner2023-09-301-5/+3
* gh-109782: Ensure `os.path.isdir` has the same signature on all platforms (GH...Amin Alaee2023-09-281-8/+8
* gh-109723: Disable Py_BUILD_CORE in _testcapi (#109727)Victor Stinner2023-09-221-1/+18
* gh-108717: Speedup `os.DirEntry.is_junction` function (#108718)Nikita Sobolev2023-09-061-9/+5
* gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)Victor Stinner2023-09-041-1/+33
* gh-108494: Argument Clinic: inline parsing code for positional-only parameter...Serhiy Storchaka2023-09-031-6/+16
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-3165-360/+170
* gh-108494: Argument Clinic: fix support of Limited C API (GH-108536)Serhiy Storchaka2023-08-281-3/+2
* gh-106320: Remove private AC converter functions (#108505)Victor Stinner2023-08-2616-16/+32
* gh-106320: Remove private _PyLong_FileDescriptor_Converter() (#108503)Victor Stinner2023-08-265-5/+10
* gh-106320: Remove private _PyLong converter functions (#108499)Victor Stinner2023-08-266-6/+12
* gh-108494: AC supports pos-only args in limited C API (#108498)Victor Stinner2023-08-251-1/+33
* gh-108494: Argument Clinic partial supports of Limited C API (#108495)Victor Stinner2023-08-251-0/+53
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-2432-276/+276
* gh-95065, gh-107704: Argument Clinic: support multiple '/ [from ...]' and '* ...Serhiy Storchaka2023-08-211-32/+331
* gh-107704: Argument Clinic: add support for deprecating keyword use of parame...Serhiy Storchaka2023-08-192-1140/+2095
* gh-107801: Improve the accuracy of os.lseek docs (#107935)Erlend E. Aasland2023-08-181-4/+13
* gh-105481: opcode.h is no longer generated during the build (#108080)Irit Katriel2023-08-171-1/+21
* gh-107880: Teach Argument Clinic to clone __init__ and __new__ methods (#107885)Erlend E. Aasland2023-08-131-1/+167
* gh-106844: Fix issues in _winapi.LCMapStringEx (GH-107832)Serhiy Storchaka2023-08-111-7/+5
* gh-95065: Argument Clinic: Add functional tests of deprecated positionals (#1...Erlend E. Aasland2023-08-101-0/+974
* Docs: fix typo in os.pwrite docstring (#107087)Jérôme Carretero2023-07-231-2/+2
* gh-107122: Add clear method to dbm.ndbm module (gh-107126)Dong-hee Na2023-07-231-1/+23
* gh-107122: Add clear method to dbm.gdbm.module (gh-107127)Dong-hee Na2023-07-231-1/+23
* gh-105481: do not auto-generate pycore_intrinsics.h (#106913)Irit Katriel2023-07-201-1/+37
* gh-105481: Generate the opcode lists in dis from data extracted from bytecode...Irit Katriel2023-07-181-1/+195
* gh-81283: compiler: remove indent from docstring (#106411)Inada Naoki2023-07-151-1/+60
* gh-105481: expose opcode metadata via the _opcode module (#106688)Irit Katriel2023-07-141-1/+316
* gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208)Victor Stinner2023-06-0110-145/+10
* gh-105156: Argument Clinic avoids Py_UNICODE type (#105161)Victor Stinner2023-05-313-17/+16
* gh-88745: Add _winapi.CopyFile2 and update shutil.copy2 to use it (GH-105055)Steve Dower2023-05-301-1/+71
* gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...Steve Dower2023-05-291-1/+69
* gh-104773: PEP 594: Remove the audioop module (#104937)Victor Stinner2023-05-251-1318/+0