From fc8c99a8ce483db23fa624592457e350e99193f6 Mon Sep 17 00:00:00 2001 From: Yuki Kobayashi Date: Mon, 17 Feb 2025 21:56:33 +0900 Subject: [PATCH] gh-130214: Document `PyEllipsis_Type` (GH-130215) --- Doc/c-api/slice.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Doc/c-api/slice.rst b/Doc/c-api/slice.rst index 8adf6a961378..c6d761fe7fd1 100644 --- a/Doc/c-api/slice.rst +++ b/Doc/c-api/slice.rst @@ -118,6 +118,12 @@ Ellipsis Object ^^^^^^^^^^^^^^^ +.. c:var:: PyTypeObject PyEllipsis_Type + + The type of Python :const:`Ellipsis` object. Same as :class:`types.EllipsisType` + in the Python layer. + + .. c:var:: PyObject *Py_Ellipsis The Python ``Ellipsis`` object. This object has no methods. Like -- 2.47.3