summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* Python 3.15.0a1v3.15.0a1Hugo van Kemenade2025-10-147-14/+14
* gh-107073: fix relevant typo in `PyObject_ClearManagedDict` (#140032)Mikhail Efimov2025-10-132-2/+2
* gh-139924: Add PyFunction_PYFUNC_EVENT_MODIFY_QUALNAME event for function wat...Dino Viehland2025-10-101-0/+3
* gh-129813: Fix PyBytesWriter tests (#139892)Victor Stinner2025-10-101-1/+1
* gh-111489: Add PyTuple_FromArray() function (#139691)Victor Stinner2025-10-101-0/+13
* gh-101100: Fix reference warnings in `c-api/init.rst` documenting `PyGILState...Stan Ulbrych2025-10-091-6/+19
* Document that `PyInterpreterState_GetDict` returns a borrowed reference (#139...Petr Viktorin2025-10-011-0/+3
* gh-133644: remove `PyWeakref_GetObject` and `PyWeakref_GET_OBJECT` (GH-133657)Bénédikt Tran2025-09-241-24/+0
* Document `Py_AddPendingCall()` change with subinterpreters in 3.12 (GH-139117)Peter Bierma2025-09-181-0/+4
* Remove unmatched closing parenthesis (GH-139082)Rafael Fontenelle2025-09-181-1/+1
* gh-129368: In PyRun C API docs, clarify what a "start token" is (#129935)Rajhans Jadhao2025-09-171-2/+3
* gh-129813, PEP 782: Add doc reference link (#138986)Victor Stinner2025-09-161-0/+1
* gh-129813, PEP 782: Soft deprecate _PyBytes_Resize() (#138964)Victor Stinner2025-09-161-0/+9
* gh-138794: Communicate to PyRefTracer when they are being replaced (#138797)Pablo Galindo Salgado2025-09-151-0/+16
* gh-138886: Remove deprecated `PySys_ResetWarnOptions` C-API function (#138887)sobolevn2025-09-152-9/+0
* gh-136355: Deprecate `-b` and `-bb` CLI flags in 3.15 (#136363)sobolevn2025-09-141-0/+5
* gh-129813, PEP 782: Add PyBytesWriter_Format() (#138824)Victor Stinner2025-09-121-0/+9
* gh-129813, PEP 782: Add PyBytesWriter C API (#138822)Victor Stinner2025-09-121-0/+150
* Add impl-detail block for PyLong_FromLong docs (#126422)Sergey B Kirpichev2025-09-091-3/+5
* gh-138644: Update c-api docs of `PyInterpreterState` about PEP-684 (#138651)sobolevn2025-09-081-1/+9
* gh-137210: Add a struct, slot & function for checking an extension's ABI (GH-...Petr Viktorin2025-09-052-3/+181
* enhance docs for critical sections (#137334)Kumar Aditya2025-08-261-5/+13
* gh-138098: Clarify strong references in `PyDict_Next` docs on the free-thread...PrinceNaroliya2025-08-251-0/+9
* gh-95245: Document Py_TPFLAGS_PREHEADER (GH-135861)Sergey Miryanov2025-08-251-0/+13
* gh-120037: Disable user site packages when a ._pth file is used (GH-137428)Steve Dower2025-08-191-0/+7
* gh-128813: cleanup C-API docs for PyComplexObject (GH-137579)Sergey B Kirpichev2025-08-111-113/+103
* Fix documentation of hash in PyHash_FuncDef (#137595)da-woods2025-08-111-1/+1
* gh-128813: deprecate cval field of the PyComplexObject struct (#137271)Sergey B Kirpichev2025-08-081-0/+10
* gh-137368: document __index__() support for PyLong_AsInt32/64() (GH-137369)Sergey B Kirpichev2025-08-041-0/+4
* gh-137341: Remove more word duplications (GH-137342)Serhiy Storchaka2025-08-031-2/+2
* gh-128813: soft-deprecate _Py_c_*() functions (GH-137261)Sergey B Kirpichev2025-08-011-0/+28
* gh-133296: Fix versionadded for C API functions that were backported (#137024)Nathan Goldbaum2025-07-221-3/+3
* gh-136459: Add perf trampoline support for macOS (#136461)Nazım Can Altınova2025-07-221-4/+5
* Revert "gh-112068: C API: Add support of nullable arguments in PyArg_Parse (G...Serhiy Storchaka2025-07-221-15/+0
* gh-133296: Publicly expose critical section API that accepts PyMutex (gh-135899)Nathan Goldbaum2025-07-211-0/+40
* Doc/c-api/memory.rst: extend --without-pymalloc doc with ASan information (GH...Disconnect3d2025-07-191-0/+4
* GH-133711: Enable UTF-8 mode by default (PEP 686) (#133712)Adam Turner2025-07-151-3/+1
* gh-136663: fix signatures of PyFloat_Pack/Unpack in docs (#136664)Sergey B Kirpichev2025-07-151-6/+6
* gh-132629: Deprecate accepting out-of-range values for unsigned integers in P...Serhiy Storchaka2025-07-131-10/+17
* Docs: Fix and improve the `PyUnstable_Object_EnableDeferredRefcount` document...Peter Bierma2025-07-131-5/+7
* gh-136209: Add .. c:var:: declarations for C exception types (GH-136210)Petr Viktorin2025-07-101-251/+187
* gh-135913: Document ob_refcnt, ob_type, ob_size (GH-135914)Petr Viktorin2025-07-072-22/+64
* gh-135755: Document __future__.* and CO_* as proper Sphinx objects (GH-135980)Petr Viktorin2025-07-072-4/+69
* gh-135075: Make PyObject_SetAttr() fail with NULL value and exception (#136180)Victor Stinner2025-07-031-0/+15
* gh-134009: Expose `PyMutex_IsLocked` in the public C API (gh-134365)Sam Gross2025-07-011-0/+12
* gh-76595: Add note on `PyCapsule_Import` behavior (GH-134022)Nicolas Trangez2025-06-281-0/+10
* Docs: Fix duplicate word typos (GH-135958)Brian Schubert2025-06-272-2/+2
* gh-135755: Docs: C API: Document missing `PyFunction_GET*` macros (GH-135762)Peter Bierma2025-06-251-0/+20
* gh-89488: Add warning about `Py_BuildValue("p")` needing exact `int` (GH-135610)Petr Viktorin2025-06-231-0/+6
* Docs: Remove unnecessary trailing backslashes (GH-135781)Rafael Fontenelle2025-06-211-2/+2