https://github.com/python/cpython/commit/6e659bf645beaaea54d20324fa06c0992a0b6a20 commit: 6e659bf645beaaea54d20324fa06c0992a0b6a20 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: ZeroIntensity <[email protected]> date: 2025-11-09T20:01:04Z summary:
[3.14] gh-141004: Document `PySuper_Type` (GH-141315) (GH-141318) gh-141004: Document `PySuper_Type` (GH-141315) (cherry picked from commit 14c62227f9fa11fb743f9e03dcc5aab553de1098) Co-authored-by: Stan Ulbrych <[email protected]> files: M Doc/c-api/descriptor.rst diff --git a/Doc/c-api/descriptor.rst b/Doc/c-api/descriptor.rst index 9a4093a7708a7c..22c3b790cc3ec3 100644 --- a/Doc/c-api/descriptor.rst +++ b/Doc/c-api/descriptor.rst @@ -43,6 +43,12 @@ found in the dictionary of type objects. Built-in descriptors ^^^^^^^^^^^^^^^^^^^^ +.. c:var:: PyTypeObject PySuper_Type + + The type object for super objects. This is the same object as + :class:`super` in the Python layer. + + .. c:var:: PyTypeObject PyClassMethod_Type The type of class method objects. This is the same object as _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
