summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/typeobj.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-116935: Document that heap types need to support garbage collection...Miss Islington (bot)2024-04-191-1/+2
* [3.12] gh-111178: Docs: fix `traverseproc`, `inquiry`, and `destructor` param...Miss Islington (bot)2023-12-061-3/+3
* [3.12] Fix misc doc typos (GH-108592) (#108594)Miss Islington (bot)2023-08-291-1/+1
* [3.12] gh-107298: Fix some references in the C API documentation (GH-108072) ...Miss Islington (bot)2023-08-171-1/+1
* [3.12] gh-107298: Fix C API Buffer documentation (GH-108011). (#108048)Serhiy Storchaka2023-08-161-1/+1
* [3.12] gh-91051: fix segfault when using all 8 type watchers (GH-107853) (#10...Miss Islington (bot)2023-08-161-2/+2
* [3.12] gh-98154: Clarify Usage of "Reference Count" In the Docs (gh-107552) (...Miss Islington (bot)2023-08-081-4/+6
* [3.12] gh-107298: Fix yet more Sphinx warnings in the C API doc (GH-107345) (...Serhiy Storchaka2023-07-281-16/+17
* [3.12] gh-107298: Fix more Sphinx warnings in the C API doc (GH-107329) (GH-1...Serhiy Storchaka2023-07-281-5/+5
* [3.12] gh-107298: Fix doc references to undocumented modules (GH-107300) (GH-...Miss Islington (bot)2023-07-281-1/+1
* [3.12] gh-107298: Docs: add targets for some :c:member: and :c:macro: referen...Miss Islington (bot)2023-07-271-15/+17
* [3.12] gh-107091: Fix some uses of :attr: role (GH-107318) (GH-107330)Serhiy Storchaka2023-07-271-32/+32
* [3.12] gh-107091: Fix some uses of :c:type: role (GH-107138) (GH-107312)Miss Islington (bot)2023-07-261-10/+10
* [3.12] gh-107091: Fix some uses of :c:member: role (GH-107129) (GH-107310)Miss Islington (bot)2023-07-261-1/+1
* [3.12] gh-107091: Fix the use of some C domain roles (GH-107092) (GH-107113)Miss Islington (bot)2023-07-231-2/+2
* [3.12] gh-106919: Use role :c:macro: for referencing the C "constants" (GH-10...Serhiy Storchaka2023-07-211-79/+81
* [3.12] gh-105227: Add PyType_GetDict() (GH-105747) (#106600)Miss Islington (bot)2023-07-101-1/+13
* [3.12] tp_flags docs: fix indentation (GH-106420) (#106442)Miss Islington (bot)2023-07-051-9/+9
* [3.12] gh-102304: doc: Add links to Stable ABI and Limited C API (#105345) (#...Victor Stinner2023-06-061-1/+1
* GH-97950: Use new-style index directive ('builtin') (#104164)Adam Turner2023-05-061-2/+2
* gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)Petr Viktorin2023-05-041-0/+20
* Docs: fix dunders with too many underscores (#103955)Erlend E. Aasland2023-04-271-1/+1
* GH-99293: Document that `Py_TPFLAGS_VALID_VERSION_TAG` shouldn't be used. (#G...Mark Shannon2023-02-091-0/+10
* docs: fix `ssizeobjargproc` parameters (#100736)David Lechner2023-01-041-1/+2
* gh-99767: mark `PyTypeObject.tp_watched` as internal use only in table (#100271)Carl Meyer2022-12-161-1/+1
* GH-99767: update PyTypeObject docs for type watchers (GH-99928)Carl Meyer2022-12-151-0/+9
* gh-99249: Clarify "read-only" slots tp_bases & tp_mro (GH-99342)Petr Viktorin2022-11-281-6/+25
* gh-96746: Docs: Clear up Py_TPFLAGS_DISALLOW_INSTANTIATION inheritance (GH-99...Petr Viktorin2022-11-071-0/+11
* gh-93738: Documentation C syntax (Function glob patterns -> literal markup) (...Adam Turner2022-10-051-3/+3
* gh-93738: Documentation C syntax (:c:data:`view->obj` -> :c:expr:`view->obj`)...Adam Turner2022-10-041-5/+5
* gh-93738: Documentation C syntax (:c:type:`PyObject` -> :c:expr:`PyObject`) (...Adam Turner2022-10-041-1/+1
* GH-95245: Document use of `MANAGED` flags instead of offsets. (GH-96044)Mark Shannon2022-08-301-47/+59
* Doc: Update Py_TPFLAGS_HAVE_FINALIZE in docs (GH-96273)da-woods2022-08-301-3/+6
* Clarify API stability of PyTypeObject in relation to static types. (GH-96217)ov2k2022-08-251-3/+3
* GH-92678: Document that you shouldn't be doing your own dictionary offset cal...Mark Shannon2022-08-091-12/+5
* gh-94673: Add Per-Interpreter tp_subclasses for Static Builtin Types (gh-95301)Eric Snow2022-08-051-3/+11
* gh-93274: Make vectorcall safe on mutable classes & inherit it by default (#9...Petr Viktorin2022-08-041-14/+20
* gh-94673: Add Per-Interpreter tp_weaklist for Static Builtin Types (#95302)Eric Snow2022-07-291-0/+7
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH...Ned Batchelder2022-07-051-1/+1
* [doc] fix typo in reference to tp_descr_get and tp_descr_set (GH-94140)Max Bachmann2022-06-261-2/+2
* gh-87961: Remove outdated notes from functions that aren't in the Limited API...Petr Viktorin2022-06-081-6/+0
* gh-60074: add new stable API function PyType_FromMetaclass (GH-93012)Wenzel Jakob2022-05-271-1/+1
* Document Py_ssize_t. (GH-92512)Julien Palard2022-05-131-9/+9
* gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769)Oleg Iarygin2022-04-181-4/+4
* Add missing "to" to two tp_flags notes (GH-31624)Brandt Bucher2022-03-011-2/+2
* Minor fixes to C API docs (GH-31501)Jelle Zijlstra2022-02-231-13/+14
* Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208)Raymond Hettinger2021-12-191-1/+0
* bpo-46131: add fastpath for PyFloat_Check() (#30200)Matti Picus2021-12-191-0/+1
* bpo-45250: fix docs regarding `__iter__` and iterators being inconsistently r...Brett Cannon2021-11-201-7/+7
* bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() (GH-29246)Sam Gross2021-10-271-0/+12