summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/typeobj.rst
Commit message (Expand)AuthorAgeFilesLines
* Document Py_ssize_t. (GH-92512)Miss Islington (bot)2022-05-131-9/+9
* [3.9] gh-91118: Fix docstrings that do not honor --without-doc-strings (GH-31...Oleg Iarygin2022-04-191-4/+4
* [3.9] Minor fixes to C API docs (GH-31501) (GH-31526)Jelle Zijlstra2022-03-021-13/+14
* bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() (GH-292...Miss Islington (bot)2021-10-281-0/+12
* [3.9] docs: correct references to __isub__ etc (GH-28297). (GH-28415)Serhiy Storchaka2021-09-171-130/+130
* Note that tp_clear and m_clear are not always called (GH-27581) (GH-27597)Miss Islington (bot)2021-08-041-0/+6
* [3.9] bpo-40204: Allow pre-Sphinx 3 syntax in the doc (GH-21844) (GH-21901)Victor Stinner2020-08-191-2/+2
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Miss Islington (bot)2020-05-281-1/+15
* bpo-39778: Add clarification about tp_traverse and ownership (GH-18754)Pablo Galindo2020-03-031-1/+13
* bpo-39245: Make Vectorcall C API public (GH-17893)Petr Viktorin2020-02-061-13/+7
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-031-34/+0
* Fix quoted signature of setattrofunc (GH-17251)Alex2019-11-221-1/+1
* bpo-36974: expand call protocol documentation (GH-13844)Jeroen Demeyer2019-11-121-47/+43
* bpo-38600: NULL -> ``NULL``. (GH-17001)Serhiy Storchaka2019-10-301-3/+3
* bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)Serhiy Storchaka2019-10-301-64/+64
* bpo-38206: Clarify tp_dealloc requirements for heap allocated types. (GH-16248)Ammar Askar2019-09-271-4/+20
* bpo-29986: Doc: Delete tip to raise TypeError from tp_richcompare. (GH-16095)Julien Palard2019-09-131-6/+0
* bpo-38103: fix conflicting labels in the docs. (GH-15906)Ezio Melotti2019-09-111-2/+2
* bpo-37342: Fix the incorrect nb_index's type in typeobj documentation (GH-14241)Hai Shi2019-06-201-1/+1
* bpo-36974: document PEP 590 (GH-13450)Jeroen Demeyer2019-06-021-122/+199
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-291-0/+5
* bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)Jeroen Demeyer2019-05-281-0/+26
* bpo-34626: Document creating heap types from the C-API (GH-9154)Petr Viktorin2019-05-241-5/+24
* Doc: Replace the deprecated highlightlang directive by highlight. (#13377)Stéphane Wirtel2019-05-171-1/+1
* Correct "inplace" with "in-place" (GH-10480)Andre Delfino2019-04-081-2/+2
* Add the meaning of the returned value of PyTypeObject.tp_init (GH-12325)Stéphane Wirtel2019-03-151-0/+2
* bpo-17045: Improve C-API doc for PyTypeObject. (gh-7413)Eric Snow2018-06-141-129/+1175
* bpo-5945: Improve mappings and sequences C API docs. (GH-7029)Serhiy Storchaka2018-05-221-21/+35
* bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...stratakis2017-11-021-0/+16
* bpo-29916: Include PyGetSetDef in C API extension documentation. (#831)Michael Seifert2017-09-151-15/+0
* Issue #28771: Merge C API doc fix from 3.6Martin Panter2016-12-101-5/+7
|\
| * Issue #28771: Update tp_get/setattr signature documentationMartin Panter2016-12-101-5/+7
* | Issue #28761: The fields name and doc of structures PyMemberDef, PyGetSetDef,Serhiy Storchaka2016-11-221-5/+5
|/
* Issue #28496: Mark up constants 0, 1 and -1 that denote return values orSerhiy Storchaka2016-10-271-3/+3
* Issue #18287: PyType_Ready() now checks that tp_name is not NULL.Serhiy Storchaka2016-10-071-1/+2
* Issue #24314: Fix doc links for general attributes like __name__, __dict__Martin Panter2016-06-181-2/+2
* Issue #25701: Document C API functions that both set and delete objectsMartin Panter2015-12-081-10/+16
* Issue #24808: Merge 3.4 into 3.5; adjust new tp_as_async fieldMartin Panter2015-08-251-5/+5
|\
| * Issue #24808: Update the documentation of some PyTypeObject fieldsMartin Panter2015-08-251-5/+5
* | docs.capi: Fix tp_as_async docYury Selivanov2015-06-231-1/+1
* | Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc.Yury Selivanov2015-05-281-6/+6
* | Issue 24180: Fixes by Berker Peksag.Yury Selivanov2015-05-211-3/+2
* | Issue 24180: Documentation for PEP 492 changes.Yury Selivanov2015-05-211-2/+63
* | merge with 3.4Georg Brandl2014-10-051-24/+1
|\ \ | |/
| * Closes #19477: remove outdated documentation of tp_print type object slot.Georg Brandl2014-10-051-24/+1
* | Merge 3.4Andrew Svetlov2014-07-031-1/+3
|\ \ | |/
| * Update docs about tp_richcompareAndrew Svetlov2014-07-031-1/+3
* | Issue #9307: document the various Py_TPFLAGS_*_SUBCLASS flags. Patch by Yury...Antoine Pitrou2014-04-281-0/+18
|\ \ | |/
| * Issue #9307: document the various Py_TPFLAGS_*_SUBCLASS flags. Patch by Yury...Antoine Pitrou2014-04-281-0/+18
* | PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)Benjamin Peterson2014-04-101-0/+3
|/