summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/module.rst
Commit message (Expand)AuthorAgeFilesLines
* Python 3.15.0a3v3.15.0a3Hugo van Kemenade11 days1-15/+15
* typo fixes in docs (#142683)SYan21213 days1-1/+1
* gh-140550: PEP 793 reference documentation (GH-141197)Petr Viktorin2025-11-261-189/+510
* gh-141909: Add `PyModuleDef_Slot` and earlier Py_mod_* constants to stable AB...Petr Viktorin2025-11-251-0/+4
* Clarify argument/result ownership/validity for PyModule_* functions (GH-141159)Petr Viktorin2025-11-071-1/+14
* Fix minor typos and wording in C API docs (#140955)Petr Viktorin2025-11-031-1/+1
* Document that PyModule_GetDef can return NULL with or without setting an exce...Petr Viktorin2025-10-241-0/+4
* gh-137210: Add a struct, slot & function for checking an extension's ABI (GH-...Petr Viktorin2025-09-051-0/+22
* gh-134160: Split extension module init from PyModule docs; emphasize multi-ph...Petr Viktorin2025-06-131-145/+126
* gh-134160: Improve multi-phase init note on isolation & subinterpreters (GH-1...Petr Viktorin2025-05-301-12/+30
* gh-127989: C API: Refer to "attached thread states" instead of the GIL (GH-12...Peter Bierma2025-03-201-2/+2
* gh-129405: Fix doc for Py_mod_multiple_interpreters default, and add test (GH...Petr Viktorin2025-02-241-1/+1
* gh-101944: Clarify PyModule_AddObjectRef() documentation (#129433)Victor Stinner2025-02-031-3/+4
* gh-101100: Consolidate documentation on `ModuleType` attributes (#124709)Alex Waygood2024-10-091-10/+12
* gh-118915: Add/fix docs entries for some new 3.13 C API (GH-124134)Petr Viktorin2024-09-181-0/+2
* GH-109975: Copyedit 3.13 What's New: Release Highlights (#122958)Adam Turner2024-08-131-1/+1
* GH-121970: Rewrite the C-API annotations extension (#121985)Adam Turner2024-07-191-2/+4
* gh-113993: Don't immortalize in PyUnicode_InternInPlace; keep immortalizing i...Petr Viktorin2024-07-161-0/+15
* gh-121749: Fix discrepancy in docs for `PyModule_AddObjectRef` (GH-121750)Dominic H2024-07-141-1/+1
* gh-121615: Improve `module.rst` C-API docs with better error descriptions (#1...sobolevn2024-07-111-8/+15
* Docs: Add central references to free-threading-related options (#119017)Brett Simmers2024-05-211-2/+2
* gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH...Petr Viktorin2024-05-061-1/+1
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+38
* gh-107298: Fix numerous ref errors and typos in the C API docs (GH-108258)Serhiy Storchaka2023-08-221-0/+4
* gh-98154: Clarify Usage of "Reference Count" In the Docs (gh-107552)Eric Snow2023-08-071-1/+1
* gh-107306: Add a Doc Entry for Py_mod_multiple_interpreters (#107403)Eric Snow2023-07-311-0/+31
* gh-107298: Fix yet more Sphinx warnings in the C API doc (GH-107345)Serhiy Storchaka2023-07-271-1/+1
* gh-107298: Fix more Sphinx warnings in the C API doc (#107329)Victor Stinner2023-07-271-4/+4
* gh-107091: Fix some uses of :c:member: role (GH-107129)Serhiy Storchaka2023-07-261-4/+4
* gh-107091: Fix the use of some C domain roles (#107092)Serhiy Storchaka2023-07-231-1/+1
* gh-106919: Use role :c:macro: for referencing the C "constants" (GH-106920)Serhiy Storchaka2023-07-211-3/+3
* bpo-42327: C API: Add PyModule_Add() function (GH-23443)Serhiy Storchaka2023-07-181-34/+31
* GH-97950: Use new-style index directive ('object') (#104158)Adam Turner2023-05-041-1/+1
* gh-101973: Fix parameter reference for PyModule_FromDefAndSpec (#101976)Oleg Iarygin2023-02-171-2/+2
* gh-93738: Documentation C syntax (Function glob patterns -> literal markup) (...Adam Turner2022-10-051-2/+2
* Note that tp_clear and m_clear are not always called (GH-27581)Petr Viktorin2021-08-041-0/+6
* bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-23602)Antonio Cuni2021-01-061-1/+2
* bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)Victor Stinner2020-11-041-14/+90
* bpo-40204, doc: Fix syntax of C variables (GH-21846)Victor Stinner2020-08-131-2/+2
* bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607)Brad Solomon2020-04-271-1/+1
* bpo-38644: Make tstate more explicit inside pystate.c (GH-19182)Victor Stinner2020-03-261-0/+4
* bpo-40024: Add PyModule_AddType() helper function (GH-19088)Dong-hee Na2020-03-221-1/+11
* bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)Victor Stinner2020-03-171-10/+34
* bpo-38159: Clarify documentation of PyState_AddModule (GH-16101)Petr Viktorin2019-11-011-0/+11
* bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)Serhiy Storchaka2019-10-301-17/+17
* bpo-26868: Fix example usage of PyModule_AddObject. (#15725)Brandt Bucher2019-09-121-1/+16
* Doc: Replace the deprecated highlightlang directive by highlight. (#13377)Stéphane Wirtel2019-05-171-1/+1
* bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)Marcel Plch2018-03-171-3/+9
* bpo-30656: Fix Python C API Module Objects documentation (GH-2170)Emily Morehouse2017-06-131-1/+1
* bpo-29918: Add missed "const" modifiers in C API documentation. (#846)Serhiy Storchaka2017-03-301-4/+4