bpo-30059: Include Py_Ellipsis in C API documentation (#1018)

This commit is contained in:
Michael Seifert 2017-04-14 21:18:35 +02:00 committed by Serhiy Storchaka
parent e4f961be09
commit 0dc5c3169d
1 changed files with 11 additions and 0 deletions

View File

@ -93,3 +93,14 @@ Slice Objects
code.
.. versionadded:: 3.6.1
Ellipsis Object
---------------
.. c:var:: PyObject *Py_Ellipsis
The Python ``Ellipsis`` object. This object has no methods. It needs to be
treated just like any other object with respect to reference counts. Like
:c:data:`Py_None` it is a singleton object.