summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
...
* gh-111696, PEP 737: Add PyType_GetModuleName() function (#116824)Victor Stinner2024-03-141-0/+7
* gh-111696, PEP 737: Add PyType_GetFullyQualifiedName() function (#116815)Victor Stinner2024-03-141-0/+8
* Docs: PyUnstable_Long_IsCompact() docs now mention PyLong_AsNativeBytes() (#1...Sergey B Kirpichev2024-03-131-1/+1
* gh-111389: expose PyHASH_INF/BITS/MODULUS/IMAG macros as public (#111418)Sergey B Kirpichev2024-03-091-1/+24
* gh-115664: Fix ordering of more versionadded and versionchanged directives (G...Serhiy Storchaka2024-03-074-8/+8
* Fix the PyGetSetDef documentation (GH-116056)Serhiy Storchaka2024-03-051-3/+3
* gh-115799: Add missing double-quote in docs (#115884)bssyousefi2024-02-251-1/+1
* gh-111140: Improve PyLong_AsNativeBytes API doc example & improve the test (#...Gregory P. Smith2024-02-221-17/+57
* gh-115653: Document PyCode_GetFirstFree() (#115654)Bogdan Romanyuk2024-02-211-2/+6
* gh-114626: add PyCFunctionFast and PyCFunctionFastWithKeywords (GH-114627)David Hewitt2024-02-151-11/+11
* gh-113437: Update documentation about PyUnicode_AsWideChar() function (GH-113...qqwqqw6892024-02-131-1/+6
* gh-111140: Minor doc fixes for PyLong_AsNativeBytes (GH-115375)Steve Dower2024-02-121-10/+14
* gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun...Steve Dower2024-02-121-0/+66
* gh-110850: Add PyTime_t C API (GH-115215)Petr Viktorin2024-02-122-0/+84
* gh-101100: Clean up Doc/c-api/exceptions.rst and Doc/c-api/sys.rst (GH-114825)Skip Montanaro2024-02-112-18/+29
* gh-115172: Fix explicit index extries for the C API (GH-115173)Serhiy Storchaka2024-02-1111-147/+144
* gh-101100: Fix sphinx warnings in `c-api/gcsupport.rst` (#114786)Nikita Sobolev2024-02-101-3/+8
* Docs: correctly link to code objects (#115214)Erlend E. Aasland2024-02-091-2/+3
* gh-101100: Fix Py_DEBUG dangling Sphinx references (#115003)Skip Montanaro2024-02-071-5/+6
* gh-112066: Add `PyDict_SetDefaultRef` function. (#112123)Sam Gross2024-02-061-0/+20
* GH-69695: Update ``PyImport_ImportModule`` description (GH-103836)patenaud2024-02-021-14/+2
* gh-114329: Add `PyList_GetItemRef` function (GH-114504)Sam Gross2024-02-021-2/+10
* gh-101100: Fix sphinx warnings in `Doc/c-api/memoryview.rst` (GH-114669)Nikita Sobolev2024-01-291-0/+13
* Fix `c-api/file.rst` indexes (GH-114608)Nikita Sobolev2024-01-271-2/+3
* gh-113445: Amend PyObject_RichCompareBool() docs (GH-113891)Sergey B Kirpichev2024-01-271-6/+2
* Document PyOS_strtoul and PyOS_strtol (GH-114048)Sergey B Kirpichev2024-01-261-0/+36
* gh-101100: Fix sphinx warnings in `c-api/file.rst` (#114546)Nikita Sobolev2024-01-262-2/+15
* gh-101100: Fix Sphinx warnings in `c-api/structures.rst` (#113564)Hugo van Kemenade2024-01-241-9/+10
* gh-101100: Fix sphinx warnings in `Doc/c-api/memory.rst` (#114373)Nikita Sobolev2024-01-211-2/+2
* gh-112092: clarify unstable ABI recompilation requirements (#112093)DerSchinken2024-01-181-1/+1
* gh-102468: Document `PyCFunction_New*` and `PyCMethod_New` (GH-112557)AN Long2024-01-161-0/+34
* gh-109598: make PyComplex_RealAsDouble/ImagAsDouble use __complex__ (GH-109647)Sergey B Kirpichev2024-01-151-0/+18
* gh-113391: fix outdated PyObject_HasAttr docs (#113420)Sergey B Kirpichev2024-01-081-3/+2
* gh-101578: [doc] mention that PyErr_GetRaisedException returns NULL when the ...Irit Katriel2023-12-311-1/+1
* gh-101100: Improve docs on exception attributes (GH-113057)Alex Waygood2023-12-131-6/+10
* gh-101100: Further improve docs on function attributes (#113001)Alex Waygood2023-12-121-1/+1
* gh-101100: Improve documentation on function attributes (#112933)Alex Waygood2023-12-111-10/+13
* Doc: c-api: fix order of PyMemberDef fields (#112879)Inada Naoki2023-12-101-4/+4
* gh-101100: Improve documentation of code object attributes (#112781)Alex Waygood2023-12-062-3/+3
* gh-111545: Add Py_HashPointer() function (#112096)Victor Stinner2023-12-061-0/+10
* gh-111178: Docs: fix `traverseproc`, `inquiry`, and `destructor` parameters i...Christopher Chavez2023-12-061-3/+3
* gh-101100: Properly document frame object attributes (#112735)Alex Waygood2023-12-052-6/+7
* gh-62897: Update PyUnicode C API parameter names (GH-12680)Rune Tynan2023-12-051-91/+91
* gh-112671: Fixing typo in the Macro Docs (GH-112715)Amioplk2023-12-041-1/+1
* gh-65210: Add const qualifiers in PyArg_VaParseTupleAndKeywords() (GH-105958)Serhiy Storchaka2023-12-041-2/+24
* gh-111545: Mention PEP 456 in PyHash_GetFuncDef() doc (#112647)Victor Stinner2023-12-031-0/+3
* gh-110481: Fix Py_SET_REFCNT() integer overflow (#112174)Victor Stinner2023-12-011-0/+3
* gh-101100: Fix Sphinx reference warnings (GH-112416)Hugo van Kemenade2023-11-251-1/+1
* gh-110481, doc: Add "immortal" term to the glossary (#112180)Victor Stinner2023-11-176-17/+18
* gh-111545: Test PyHash_GetFuncDef() function (#112098)Victor Stinner2023-11-152-0/+49