summaryrefslogtreecommitdiffstats
path: root/Modules/clinic
Commit message (Expand)AuthorAgeFilesLines
* gh-88745: Add _winapi.CopyFile2 and update shutil.copy2 to use it (GH-105055)Miss Islington (bot)2023-05-301-1/+71
* gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Wi...Miss Islington (bot)2023-05-291-1/+69
* gh-94906: Support multiple steps in math.nextafter (#103881)Matthias Görgens2023-05-191-8/+47
* gh-104615: don't make unsafe swaps in apply_static_swaps (#104620)Carl Meyer2023-05-181-9/+14
* gh-99108: Replace SHA3 implementation HACL* version (#103597)Jonathan Protzenko2023-05-081-0/+196
* gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)Irit Katriel2023-05-071-9/+20
* gh-64631: Test exception messages in cloned Argument Clinic funcs (#104167)Erlend E. Aasland2023-05-051-1/+259
* gh-87092: Expose assembler to unit tests (#103988)Irit Katriel2023-05-011-1/+63
* gh-97696: asyncio eager tasks factory (#102853)Itamar Ostricher2023-05-011-9/+194
* gh-94518: Port 23-argument `_posixsubprocess.fork_exec` to Argument Clinic (#...Oleg Iarygin2023-04-241-0/+162
* gh-103092: Isolate `_collections` (#103093)Erlend E. Aasland2023-04-121-2/+2
* GH-75586: Make shutil.which() on Windows more consistent with the OS (GH-103179)Charles Machalow2023-04-041-1/+41
* gh-103092: Isolate `_pickle` module (#102982)Erlend E. Aasland2023-04-041-11/+65
* GH-102833: Mention the key function in the docstrings (GH-103009)Raymond Hettinger2023-03-251-5/+13
* gh-102839: remove AC for math.log (GH-102863)Sergey B Kirpichev2023-03-211-44/+1
* gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH...Steve Dower2023-03-101-1/+127
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-5/+5
* bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modules (GH-7...Zackery Spytz2023-02-232-10/+83
* Add missing 'is' to `cmath.log()` docstring (#102049)Owain Davies2023-02-191-2/+2
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-161-17/+1
* gh-99108: Refactor _sha256 & _sha512 into _sha2. (#101924)Gregory P. Smith2023-02-163-450/+440
* gh-99138: Isolate _zoneinfo (#99218)Erlend E. Aasland2023-02-151-14/+201
* gh-101277: Finalise isolating itertools (GH-101305)Erlend E. Aasland2023-02-101-3/+3
* gh-101277: Port more itertools static types to heap types (#101304)Erlend E. Aasland2023-02-081-3/+3
* gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)Michael Droettboom2023-02-081-1/+253
* Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)Mark Dickinson2023-02-052-24/+29
* gh-101277: Port more `itertools` static types to heap types (#101303)Erlend E. Aasland2023-02-031-5/+5
* gh-101277: Isolate itertools, add group and _grouper types to module state (#...Erlend E. Aasland2023-02-011-4/+4
* gh-101409: Improve generated clinic code for self type checks (#101411)Erlend E. Aasland2023-01-315-39/+36
* gh-89381: Fix invalid signatures of math/cmath.log (#101404)Sergey B Kirpichev2023-01-292-29/+24
* gh-92123: Adapt _elementtree to multi-phase init (PEP 489) (#101285)Erlend E. Aasland2023-01-241-48/+161
* GH-92123: Move _elementtree heap types to module state (#101187)Erlend E. Aasland2023-01-211-7/+7
* gh-92123: Convert `_elementtree` types to heap types (#99221)Erlend E. Aasland2023-01-201-7/+7
* GH-100485: Add math.sumprod() (GH-100677)Raymond Hettinger2023-01-071-1/+38
* GH-100342: check for allocation failure in AC `*args` parsing (#100343)Kumar Aditya2022-12-281-1/+7
* gh-100344: Add C implementation for `asyncio.current_task` (#100345)Itamar Ostricher2022-12-221-1/+61
* GH-69564: Clarify use of octal format of mode argument in help(os.chmod) (#20...amaajemyfren2022-12-211-1/+12
* GH-98363: Have batched() return tuples (GH-100118)Raymond Hettinger2022-12-081-7/+7
* gh-93453: No longer create an event loop in get_event_loop() (#98440)Serhiy Storchaka2022-12-061-63/+1
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-038-96/+96
* gh-99845: Use size_t type in __sizeof__() methods (#99846)Victor Stinner2022-11-302-14/+14
* GH-91375: Port `_asyncio` static types to heap types and module state (#99122)Kumar Aditya2022-11-291-30/+145
* bpo-40882: Fix a memory leak in SharedMemory on Windows (GH-20684)Zackery Spytz2022-11-251-1/+27
* gh-64490: Fix bugs in argument clinic varargs processing (#32092)colorfulappl2022-11-241-1/+389
* gh-99240: Fix double-free bug in Argument Clinic str_converter generated code...colorfulappl2022-11-241-1/+71
* gh-64490: Fix refcount error when arguments are packed to tuple in argument c...colorfulappl2022-11-241-1/+66
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-1/+33
* gh-96002: Add functional test for Argument Clinic (#96178)colorfulappl2022-11-211-0/+2291
* gh-87092: expose the compiler's codegen to python for unit tests (GH-99111)Irit Katriel2022-11-141-1/+64
* gh-98930: improve the docstring of signal.strsignal (#99290)ram vikram singh2022-11-131-3/+4