summaryrefslogtreecommitdiffstats
path: root/Python/clinic
Commit message (Expand)AuthorAgeFilesLines
* gh-135801: Add the module parameter to compile() etc (GH-139652)Serhiy Storchaka2025-11-131-9/+17
* gh-111489: Remove _PyTuple_FromArray() alias (#139973)Victor Stinner2025-10-111-3/+2
* gh-139748: fix leaks in AC error paths when using unicode FS-based converters...Bénédikt Tran2025-10-081-2/+5
* gh-137609: Change names of some positional-only parameters in builtins (GH-13...Serhiy Storchaka2025-08-251-14/+14
* gh-135228: Create __dict__ and __weakref__ descriptors for object (GH-136966)Petr Viktorin2025-08-181-32/+1
* gh-137668: Document that ord() supports also bytes and bytearray (GH-137669)Serhiy Storchaka2025-08-131-3/+9
* gh-135228: When @dataclass(slots=True) replaces a dataclass, make the origina...Jelle Zijlstra2025-08-121-1/+32
* GH-133231: Add JIT utilities in sys._jit (GH-133233)Brandt Bucher2025-05-051-1/+85
* gh-128384: Use a context variable for warnings.catch_warnings (gh-130010)Neil Schemenauer2025-04-091-0/+21
* gh-131591: Implement PEP 768 (#131937)Pablo Galindo Salgado2025-04-031-1/+99
* gh-131525: Cache the result of tuple_hash (#131529)Michael Droettboom2025-03-278-8/+62
* gh-128421: add critical section around `traceback.tb_next` (#131322)Kumar Aditya2025-03-201-1/+52
* gh-111178: Change Argument Clinic signature for METH_O (#130682)Victor Stinner2025-03-112-2/+41
* gh-129889: Support context manager protocol by contextvars.Token (#129888)Andrew Svetlov2025-02-121-1/+52
* gh-128509: Add `sys._is_immortal` for identifying immortal objects (#128510)Peter Bierma2025-01-311-1/+31
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-202-26/+26
* gh-128384: Add locking to warnings.py. (gh-128386)Neil Schemenauer2025-01-141-8/+42
* GH-126833: Dumps graphviz representation of executor graph. (GH-126880)Mark Shannon2024-12-131-1/+57
* gh-126579: Adapt sys.audit() to Argument Clinic (GH-126580)Serhiy Storchaka2024-11-081-1/+50
* gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564)Serhiy Storchaka2024-11-088-34/+60
* gh-122943: Remove the object converter for var-positional parameter (GH-126560)Serhiy Storchaka2024-11-081-13/+9
* gh-122943: Rework support of var-positional parameter in Argument Clinic (GH-...Serhiy Storchaka2024-11-071-12/+19
* gh-116750: Add clear_tool_id function to unregister events and callbacks (#12...Tian Gao2024-10-011-1/+28
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-211-6/+46
* gh-111201: A new Python REPL (GH-111567)Pablo Galindo Salgado2024-05-051-1/+19
* gh-117514: Add `sys._is_gil_enabled()` function (#118514)Sam Gross2024-05-031-1/+29
* gh-105879: Add support for keyword arguments to eval and exec (#105885)Raphael Gaschignard2024-05-021-24/+59
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-171-0/+304
* gh-117764: Fix and add signatures for many builtins (GH-117769)Serhiy Storchaka2024-04-122-8/+8
* gh-117764: Add signatures for some functions in the sys module (GH-117770)Serhiy Storchaka2024-04-121-5/+29
* GH-114695: Add `sys._clear_internal_caches` (GH-115152)Brandt Bucher2024-02-121-1/+19
* gh-76763: Make chr() always raising ValueError for out-of-range values (GH-11...Serhiy Storchaka2024-02-101-20/+1
* gh-113626: Add allow_code parameter in marshal functions (GH-113648)Serhiy Storchaka2024-01-161-26/+212
* bpo-34392: Add sys. _is_interned() (GH-8755)Serhiy Storchaka2023-12-041-1/+35
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-073-6/+21
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-013-21/+6
* gh-67565: Remove redundant C-contiguity checks (GH-105521)Furkan Onder2023-10-232-10/+2
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-179-9/+21
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-1/+29
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-6/+18
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-319-46/+22
* gh-106320: Remove private AC converter functions (#108505)Victor Stinner2023-08-261-1/+2
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-247-37/+37
* gh-107526: Revert "gh-100357: Convert several functions in bltinsmodule to AC...Nikita Sobolev2023-08-211-195/+1
* gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208)Victor Stinner2023-06-014-34/+4
* gh-105069: Add a readline-like callable to the tokenizer to consume input ite...Pablo Galindo Salgado2023-05-301-17/+24
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-211-8/+14
* gh-84436: Implement Immortal Objects (gh-19474)Eddie Elizondo2023-04-221-1/+29
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-0/+311
* gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...Eric Snow2023-02-161-1/+32