summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
Commit message (Expand)AuthorAgeFilesLines
* [3.10] bpo-45250: fix docs regarding `__iter__` and iterators being inconsist...Brett Cannon2021-11-222-13/+14
* [3.10] bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() ...Sam Gross2021-10-282-8/+20
* [3.10] [doc] Fix typos found using codespell (GH-28744) (GH-28758)Christian Clauss2021-10-062-3/+3
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) (GH-28523)Miss Islington (bot)2021-09-231-3/+3
* [3.10] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28440)Miss Islington (bot)2021-09-181-1/+1
* docs: correct references to __isub__ etc (GH-28297)Miss Islington (bot)2021-09-161-132/+132
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194) (GH-2...Miss Islington (bot)2021-09-072-2/+2
* [doc] Fix typo c-api/exceptions.rst (GH-27847)Miss Islington (bot)2021-08-231-1/+1
* Note that tp_clear and m_clear are not always called (GH-27581)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)Miss Islington (bot)2021-08-021-0/+15
* bpo-41103: Resurrect the old buffer protocol. (GH-27437) (GH-27441)Miss Islington (bot)2021-07-292-0/+56
* bpo-43565: Document PyUnicode_KIND's return type as an unsigned int (GH-25724...Miss Islington (bot)2021-07-291-1/+1
* bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...Miss Islington (bot)2021-07-231-10/+1
* Fix a small typo in the docs (GH-26991) (GH-27003)Miss Islington (bot)2021-07-031-1/+1
* bpo-40939: Remove documentation for `PyParser_*` & add porting notes (GH-2685...Miss Islington (bot)2021-06-281-36/+0
* bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874) (GH-26877)Victor Stinner2021-06-232-2/+9
* 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
* bpo-44392: Add Py_GenericAlias to C API docs (GH-26724)Miss Islington (bot)2021-06-162-0/+48
* bpo-42085: [docs] Add versionadded for am_send in type object documentation (...Miss Islington (bot)2021-05-291-0/+2
* bpo-44263: Mention PyType_Ready in the gc protocol warning (GH-26445) (#26446)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
* Reword paragraph on specific value for Py_LIMITED_API (GH-26101) (GH-26123)Miss Islington (bot)2021-05-141-12/+12
* bpo-43795: PEP 652 user documentation (GH-25668) (GH-26034)Miss Islington (bot)2021-05-142-62/+205
* bpo-43977: Document the new pattern matching type flags (GH-25734)Brandt Bucher2021-05-021-0/+44
* bpo-43928: Fix 'succesfully' typo in document (GH-25569)JT2021-04-301-1/+1
* bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)Victor Stinner2021-04-301-3/+25
* bpo-43774: Enhance debug build documentation (GH-25712)Victor Stinner2021-04-292-48/+27
* bpo-43774: Remove unused PYMALLOC_DEBUG macro (GH-25711)Victor Stinner2021-04-292-46/+122
* bpo-43908: Document Static Types in the C API (GH-25710)Victor Stinner2021-04-292-43/+60
* bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)Erlend Egeberg Aasland2021-04-281-0/+12
* bpo-28254: Add a C-API for controlling the GC state (GH-25687)scoder2021-04-281-0/+43
* bpo-43959: clarify the documentation of the PyContextVar C-API (GH-25671)scoder2021-04-281-7/+6
* Fix typo in exceptions.rst (GH-25434)Ikko Ashimine2021-04-171-1/+1
* bpo-43862: Enhance -W cmdline option documentation (GH-25439)Victor Stinner2021-04-161-0/+7
* bpo-43774: Add more links to configure options (GH-25363)Victor Stinner2021-04-121-4/+4
* Fix Sphinx errors in the documentation and re-activate the suspicious check (...Pablo Galindo2021-04-121-1/+1
* bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227)Victor Stinner2021-04-101-0/+31
* bpo-43774: Document configure options (GH-25283)Victor Stinner2021-04-083-17/+24
* Document PyCode_Addr2Line function. (GH-25111)Mark Shannon2021-04-021-0/+8
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-291-0/+9
* bpo-31861: Complete the C-API docs for PyObject_GetAiter and PyAiter_Check (G...Pablo Galindo2021-03-232-0/+17
* bpo-43422: Revert _decimal C API addition (GH-24960)Antoine Pitrou2021-03-212-232/+0
* bpo-43506: Doc: Update removal schedule for Py_UNICODE encoder APIs (GH-24885)Inada Naoki2021-03-161-11/+15
* bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)Antoine Pitrou2021-03-111-13/+57
* bpo-3329: Fix typo in PyObjectArenaAllocator doc (GH-24795)Victor Stinner2021-03-091-1/+1
* bpo-36346: Document removal schedule of deprecate APIs (GH-20879)Inada Naoki2021-02-222-8/+7
* bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)Pablo Galindo2021-02-201-0/+6
* closes bpo-43266: Improve array formatting. (GH-24573)Erlend Egeberg Aasland2021-02-191-4/+4