]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-141004: Document `PySuper_Type` (GH-141315)
authorStan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Sun, 9 Nov 2025 19:53:56 +0000 (19:53 +0000)
committerGitHub <noreply@github.com>
Sun, 9 Nov 2025 19:53:56 +0000 (14:53 -0500)
Doc/c-api/descriptor.rst

index 9a4093a7708a7c3b02eeca2f1c515be1ade9549d..22c3b790cc3ec3442b5361cd01976ce8f13179bf 100644 (file)
@@ -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