summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-111262: Add PyDict_Pop() function (#112028)Victor Stinner2023-11-141-0/+27
* gh-111138: Add PyList_Extend() and PyList_Clear() functions (#111862)Victor Stinner2023-11-131-0/+24
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-071-8/+0
* docs: specify that PyBytes_AsStringAndSize returns 0 on success (GH-110888)lefp2023-11-031-0/+1
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-311-0/+13
* gh-108082: C API: Add tests for PyErr_WriteUnraisable() (GH-111455)Serhiy Storchaka2023-10-301-0/+8
* gh-90815: Add mimalloc memory allocator (#109914)Dino Viehland2023-10-302-0/+22
* Add a version added note for PY_VECTORCALL_ARGUMENTS_OFFSET (#110963)Anthony Shaw2023-10-231-0/+2
* gh-111089: PyUnicode_AsUTF8AndSize() sets size on error (#111106)Victor Stinner2023-10-201-2/+2
* gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)Victor Stinner2023-10-201-0/+8
* C-API docs: Clarify the size of arenas (#110895)Mienxiu2023-10-161-1/+2
* gh-110527: Improve `PySet_Clear` docs (#110528)Nikita Sobolev2023-10-161-1/+3
* gh-110722: Add PYTHON_PRESITE to import a module before site.py is run (#110769)Ɓukasz Langa2023-10-141-3/+18
* gh-110815: Support non-ASCII keyword names in PyArg_ParseTupleAndKeywords() (...Serhiy Storchaka2023-10-141-2/+7
* gh-110803: Reorganize docs for what PyType_Slot doesn't cover (GH-110813)Petr Viktorin2023-10-132-15/+32
* gh-110631: Fix reST indentation (#110724)Ezio Melotti2023-10-111-12/+12
* gh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUnicode_EqualToUTF8AndSiz...Serhiy Storchaka2023-10-111-0/+22
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-0/+13
* gh-85283: Add PySys_AuditTuple() function (#108965)Victor Stinner2023-10-051-4/+17
* gh-108867: Add PyThreadState_GetUnchecked() function (#108870)Victor Stinner2023-10-031-0/+13
* gh-107073: Make PyObject_VisitManagedDict() public (#108763)Victor Stinner2023-10-022-1/+45
* Fix typos in docs and comments (#109619)Heinz-Alexander Fuetterer2023-09-201-1/+1
* gh-108511: Add C API functions which do not silently ignore errors (GH-109025)Serhiy Storchaka2023-09-172-6/+44
* gh-107298: Document PyMODINIT_FUNC macro (#109236)Victor Stinner2023-09-141-0/+24
* Improve some C API documentation (GH-108768)Serhiy Storchaka2023-09-013-62/+51