summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-115145: Update documentation about ``PyThreadState_DeleteCurrent`` ...Miss Islington (bot)2024-10-031-1/+1
* [3.13] gh-124385: Document and soft-deprecate PyLong_AS_LONG (GH-124386) (#12...Miss Islington (bot)2024-09-301-1/+10
* [3.13] doc: PyUnicode_AsUTF8String() fails if string contains surrogates (GH-...Miss Islington (bot)2024-09-271-3/+10
* [3.13] GH-95079: document error behaviour for some unicode C APIs (GH-95080) ...Miss Islington (bot)2024-09-271-0/+9
* [3.13] gh-101100: Add a table of class attributes to the "Custom classes" sec...Alex Waygood2024-09-264-22/+24
* [3.13] gh-123609: Clarify usage of standalone `PyBUF_FORMAT` (GH-123778) (#12...Miss Islington (bot)2024-09-241-4/+5
* [3.13] gh-119802: Update memory management docs for free-threaded build (gh-1...Miss Islington (bot)2024-09-241-12/+22
* [3.13] gh-118915: Add/fix docs entries for some new 3.13 C API (GH-124134) (#...Petr Viktorin2024-09-233-0/+7
* [3.13] Use pep role instead of url (GH-121611) (#124172)Miss Islington (bot)2024-09-232-4/+4
* [3.13] GH-109975: Copyedit 3.13 What's New: C API (GH-124313) (#124334)Adam Turner2024-09-232-9/+39
* [3.13] Swap the and from in sentence in init_config.rst (GH-120086) (#123744)Miss Islington (bot)2024-09-051-1/+1
* [3.13] gh-123517: Remove unnecessary `:meth:` parentheses (gh-123518) (GH-123...Wei-Hsiang (Matt) Wang2024-09-021-2/+2
* [3.13] gh-123492: Remove unnecessary `:func:` parentheses (gh-123493) (#123513)Wei-Hsiang (Matt) Wang2024-08-302-2/+2
* [3.13] gh-123254: Improve `tuple` C API docs with more info about errors (GH-...Miss Islington (bot)2024-08-281-8/+16
* [3.13] GH-109975: Copyedit 3.13 What's New: Release Highlights (GH-122958) (#...Miss Islington (bot)2024-08-131-1/+1
* [3.13] gh-122613: Document PyLong_GetInfo() (part of Limited API) (GH-122280)...Sergey B Kirpichev2024-08-051-0/+11
* [3.13] gh-122623: Improve `c-api/bytearray.rst` with error handling info (GH-...Miss Islington (bot)2024-08-041-2/+7
* [3.13] Docs: spelling and grammar fixes (GH-122084) (#122106)Miss Islington (bot)2024-07-221-2/+2
* [3.13] GH-121970: Rewrite the C-API annotations extension (#121985) (#122027)Adam Turner2024-07-191-2/+4
* [3.13] gh-121905: Consistently use "floating-point" instead of "floating poin...Serhiy Storchaka2024-07-194-14/+14
* [3.13] gh-113993: Don't immortalize in PyUnicode_InternInPlace; keep immortal...Petr Viktorin2024-07-173-6/+62
* [3.13] gh-121834: Improve `complex` C-API docs (GH-121835) (#121895)Miss Islington (bot)2024-07-171-9/+22
* [3.13] gh-121403: Add notes for PyList_GetXXX APIs about the need for init (g...Miss Islington (bot)2024-07-161-3/+6
* [3.13] gh-121749: Fix discrepancy in docs for `PyModule_AddObjectRef` (GH-121...Miss Islington (bot)2024-07-141-1/+1
* [3.13] gh-121615: Improve `module.rst` C-API docs with better error descripti...Miss Islington (bot)2024-07-111-8/+15
* [3.13] gh-121567: Improve `slice` C-API docs by mentioning exceptions (GH-121...Miss Islington (bot)2024-07-101-3/+5
* [3.13] gh-121533: Improve `PyCell_[Get,Set]` docs: mention the exceptions (GH...Miss Islington (bot)2024-07-091-3/+6
* [3.13] [docs] fix a Sphinx directive in `c-api/object.rst` (GH-121430) (#121440)Miss Islington (bot)2024-07-061-0/+1
* [3.13] docs: Fix "Py_TPFLAGS_MANAGED_WEAKREF is set in tp_flags" (GH-112237) ...Miss Islington (bot)2024-07-031-2/+2
* gh-121115: Skip __index__ in PyLong_AsNativeBytes by default (GH-121118)Miss Islington (bot)2024-06-281-4/+11
* [3.13] gh-120858: PyDict_Next should not lock the dict (GH-120859) (#120964)Miss Islington (bot)2024-06-241-0/+11
* [3.13] gh-119344: Make critical section API public (GH-119353) (#120856)Sam Gross2024-06-211-0/+104
* [3.13] gh-120838: Add a Note in the Docs About Expectations for Py_Finalize()...Miss Islington (bot)2024-06-211-3/+10
* [3.13] gh-117511: Make PyMutex public in the non-limited API (GH-117731) (#12...Sam Gross2024-06-201-0/+43
* [3.13] GH-119462: Enforce invariants of type versioning. Backport of GH-12073...Mark Shannon2024-06-201-2/+2
* [3.13] gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (GH-118807...Miss Islington (bot)2024-06-181-0/+16
* [3.13] gh-111389: Add PyHASH_MULTIPLIER constant (GH-119214) (#119334)Miss Islington (bot)2024-06-041-0/+6
* [3.13] gh-119968: Improved monitoring c-api docs (GH-119969) (#119971)Miss Islington (bot)2024-06-031-1/+1
* [3.13] gh-118934: Fix PyEval_GetLocals docs (PEP 667) (GH-119934)Miss Islington (bot)2024-06-021-11/+16
* [3.13] gh-118888: Further PEP 667 docs updates (gh-119894)Miss Islington (bot)2024-06-021-2/+19
* [3.13] gh-74929: PEP 667 C API documentation (gh-119892)Miss Islington (bot)2024-06-011-0/+38
* [3.13] gh-119467: Fix Py_buffer.format type and correct documentation typo (G...Miss Islington (bot)2024-05-271-2/+2
* [3.13] docs: fix a few typos identified by codespell (GH-119516) (#119570)Miss Islington (bot)2024-05-261-2/+2
* [3.13] gh-118692: Avoid creating unnecessary StopIteration instances for moni...Miss Islington (bot)2024-05-241-3/+3
* [3.13] gh-112066: Fix versionadded in PyDict_SetDefaultRef docs (GH-118696) (...Miss Islington (bot)2024-05-221-0/+1
* [3.13] Docs: Add central references to free-threading-related options (GH-119...Miss Islington (bot)2024-05-211-2/+2
* [3.13] gh-74929: PEP 667 general docs update (gh-119291)Miss Islington (bot)2024-05-211-5/+6
* [3.13] Format None, True, False and NotImplemented as literals (GH-118758) (G...Miss Islington (bot)2024-05-081-1/+1
* gh-118518: Rename `PYTHONPERFJITSUPPORT` and `-X perfjit` with underscores (#...Hugo van Kemenade2024-05-071-4/+4
* gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH...Petr Viktorin2024-05-061-1/+1