summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* [3.9] Minor fixes to C API docs (GH-31501) (GH-31526)Jelle Zijlstra2022-03-024-24/+28
* bpo-40421: Fix PyFrame_GetCode() documentation (GH-31535)Miss Islington (bot)2022-02-231-2/+2
* [3.9] bpo-22039: [doc] clarify that there are no plans to disable deleting an...Miss Islington (bot)2022-01-191-2/+3
* closes bpo-46253: Change Py_UNICODE to Py_UCS4 in the C API docs to match the...Miss Islington (bot)2022-01-111-17/+17
* bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() (GH-292...Miss Islington (bot)2021-10-282-8/+20
* [3.9] [doc] Fix typos found using codespell (GH-28744) (GH-28759)Christian Clauss2021-10-061-1/+1
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) (GH-28524)Miss Islington (bot)2021-09-231-3/+3
* [3.9] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28441)Miss Islington (bot)2021-09-181-1/+1
* [3.9] docs: correct references to __isub__ etc (GH-28297). (GH-28415)Serhiy Storchaka2021-09-171-130/+130
* [doc] Fix typo c-api/exceptions.rst (GH-27847) (GH-27919)Miss Islington (bot)2021-08-231-1/+1
* Note that tp_clear and m_clear are not always called (GH-27581) (GH-27597)Miss Islington (bot)2021-08-042-0/+12
* bpo-41886: Fix documented type of PyType_Type (GH-22454)Miss Islington (bot)2021-08-031-1/+1
* Document PyMember_GetOne and PyMember_SetOne (GH-27555) (GH-27561)Miss Islington (bot)2021-08-021-0/+15
* bpo-43565: Document PyUnicode_KIND's return type as an unsigned int (GH-25724...Miss Islington (bot)2021-07-291-1/+1
* bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874) (GH-26878)Victor Stinner2021-06-232-4/+11
* bpo-44426: Fix use of the C keyword 'default' as a variable name (GH-26798) (...Miss Islington (bot)2021-06-191-2/+2
* bpo-44426: Use of 'complex' as a C variable name confuses Sphinx; change it t...Miss Islington (bot)2021-06-161-2/+2
* [3.9] bpo-44392: Add Py_GenericAlias to C API docs (GH-26724) (GH-26757)Ken Jin2021-06-162-0/+47
* bpo-44263: Mention PyType_Ready in the gc protocol warning (GH-26445)Miss Islington (bot)2021-05-292-9/+12
* bpo-44263: Better explain the GC contract for PyType_FromSpecWithBases (GH-26...Miss Islington (bot)2021-05-292-0/+18
* bpo-43959: clarify the documentation of the PyContextVar C-API (GH-25671) (GH...Miss Islington (bot)2021-04-281-7/+6
* bpo-43506: Doc: Update removal schedule for Py_UNICODE encoder APIs (GH-24885)Miss Islington (bot)2021-03-161-11/+15
* bpo-3329: Fix typo in PyObjectArenaAllocator doc (GH-24795)Miss Islington (bot)2021-03-091-1/+1
* bpo-36346: Document removal schedule of deprecate APIs (GH-20879)Miss Islington (bot)2021-02-222-8/+7
* closes bpo-43266: Improve array formatting. (GH-24573)Miss Islington (bot)2021-02-191-4/+4
* closes bpo-43254: Fix *snprintf() man page refs. (GH-24563)Miss Islington (bot)2021-02-191-2/+2
* Docs: Remove stray semicolon in init.rst (GH-23974)Miss Islington (bot)2021-01-141-1/+1
* bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-23602) (G...Miss Islington (bot)2021-01-0626-52/+74
* bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec...Miss Islington (bot)2020-11-211-2/+4
* bpo-41192: Add documentation of undocumented audit events (GH-22831)Miss Skeleton (bot)2020-10-201-0/+2
* bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291)Miss Islington (bot)2020-10-021-4/+6
* [3.9] bpo-38787: Clarify docs for PyType_GetModule and warn against common mi...Miss Islington (bot)2020-09-041-1/+11
* Note the buffer slots can be set with PyType_Spec with the unlimited API. (GH...Miss Islington (bot)2020-09-021-1/+10
* [3.9] bpo-40204: Allow pre-Sphinx 3 syntax in the doc (GH-21844) (GH-21901)Victor Stinner2020-08-1918-129/+116
* bpo-41098: Doc: Add missing deprecated directives (GH-21162)Miss Islington (bot)2020-08-071-0/+10
* bpo-36346: Doc: Update removal schedule of legacy Unicode (GH-21479)Miss Islington (bot)2020-08-051-9/+30
* bpo-41211: Doc: Fix PyLong_FromUnicode (GH-21331)Inada Naoki2020-07-051-3/+1
* bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325)Miss Islington (bot)2020-07-051-3/+1
* Doc: Minor fix to init config C API documentation (GH-21198)Miss Islington (bot)2020-07-011-2/+2
* bpo-41123: Remove PyUnicode_AsUnicodeCopy in 3.10 (GH-21227)Inada Naoki2020-06-301-0/+2
* bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205)Inada Naoki2020-06-291-1/+1
* [3.9] bpo-40939: Deprecate the PyParser_SimpleParse* functions (GH-21012)Lysandros Nikolaou2020-06-211-0/+10
* bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...Victor Stinner2020-06-081-0/+9
* bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723)Victor Stinner2020-06-081-0/+9
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Miss Islington (bot)2020-05-281-1/+15
* bpo-39245: Fix docs links to the stable ABI (GH-20388)Miss Islington (bot)2020-05-251-9/+9
* bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ...Hai Shi2020-05-112-3/+6
* bpo-38787: Update structures.rst docs (PEP 573) (GH-19980)Hai Shi2020-05-071-2/+2
* bpo-38787: C API for module state access from extension methods (PEP 573) (GH...Petr Viktorin2020-05-072-4/+82
* bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)Victor Stinner2020-05-011-0/+2