]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-141004: Document `PyMemoryView_Type` (GH-141034)
authorPeter Bierma <zintensitydev@gmail.com>
Wed, 5 Nov 2025 16:45:13 +0000 (11:45 -0500)
committerGitHub <noreply@github.com>
Wed, 5 Nov 2025 16:45:13 +0000 (11:45 -0500)
Doc/c-api/memoryview.rst

index f6038032805259f929fb56d95a33473e1abb7db6..e4ac8b57673407c64a6498458a33d37c3249becb 100644 (file)
@@ -13,6 +13,12 @@ A :class:`memoryview` object exposes the C level :ref:`buffer interface
 any other object.
 
 
+.. c:var:: PyTypeObject PyMemoryView_Type
+
+   This instance of :c:type:`PyTypeObject` represents the Python memoryview
+   type. This is the same object as :class:`memoryview` in the Python layer.
+
+
 .. c:function:: PyObject *PyMemoryView_FromObject(PyObject *obj)
 
    Create a memoryview object from an object that provides the buffer interface.