diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-26 06:00:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-26 06:00:49 (GMT) |
commit | ddb961d2abe5d5fde76d85b21a77e4e91e0043ad (patch) | |
tree | 2cd70e8cdb5a4b8c4b65e079b66a3492b26fec30 /Doc/reference/datamodel.rst | |
parent | 3ec9af75f6825a32f369ee182a388c365db241b6 (diff) | |
download | cpython-ddb961d2abe5d5fde76d85b21a77e4e91e0043ad.zip cpython-ddb961d2abe5d5fde76d85b21a77e4e91e0043ad.tar.gz cpython-ddb961d2abe5d5fde76d85b21a77e4e91e0043ad.tar.bz2 |
bpo-35054: Add more index entries for symbols. (GH-10064)
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r-- | Doc/reference/datamodel.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 81467d0..efbc872 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -165,7 +165,9 @@ NotImplemented Ellipsis - .. index:: object: Ellipsis + .. index:: + object: Ellipsis + single: ...; ellipsis literal This type has a single value. There is a single object with this value. This object is accessed through the literal ``...`` or the built-in name @@ -1831,8 +1833,9 @@ Metaclasses ^^^^^^^^^^^ .. index:: - single: metaclass - builtin: type + single: metaclass + builtin: type + single: =; class definition By default, classes are constructed using :func:`type`. The class body is executed in a new namespace and the class name is bound locally to the |