Skip to content

Commit 556bd96

Browse files
committed
Docs: Built-in Functions: Make missing functions appear in side nav
1 parent 292067f commit 556bd96

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Doc/library/functions.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ are always available. They are listed here in alphabetical order.
185185
.. class:: bytearray(source=b'')
186186
bytearray(source, encoding)
187187
bytearray(source, encoding, errors)
188-
:noindex:
188+
:no-index-entry:
189189

190190
Return a new array of bytes. The :class:`bytearray` class is a mutable
191191
sequence of integers in the range 0 <= x < 256. It has most of the usual
@@ -217,7 +217,7 @@ are always available. They are listed here in alphabetical order.
217217
.. class:: bytes(source=b'')
218218
bytes(source, encoding)
219219
bytes(source, encoding, errors)
220-
:noindex:
220+
:no-index-entry:
221221

222222
Return a new "bytes" object which is an immutable sequence of integers in
223223
the range ``0 <= x < 256``. :class:`bytes` is an immutable version of
@@ -471,7 +471,7 @@ are always available. They are listed here in alphabetical order.
471471
.. class:: dict(**kwarg)
472472
dict(mapping, **kwarg)
473473
dict(iterable, **kwarg)
474-
:noindex:
474+
:no-index-entry:
475475
476476
Create a new dictionary. The :class:`dict` object is the dictionary class.
477477
See :class:`dict` and :ref:`typesmapping` for documentation about this class.
@@ -847,7 +847,7 @@ are always available. They are listed here in alphabetical order.
847847

848848
.. _func-frozenset:
849849
.. class:: frozenset(iterable=set())
850-
:noindex:
850+
:no-index-entry:
851851

852852
Return a new :class:`frozenset` object, optionally with elements taken from
853853
*iterable*. ``frozenset`` is a built-in class. See :class:`frozenset` and
@@ -1146,7 +1146,7 @@ are always available. They are listed here in alphabetical order.
11461146
.. _func-list:
11471147
.. class:: list()
11481148
list(iterable)
1149-
:noindex:
1149+
:no-index-entry:
11501150

11511151
Rather than being a function, :class:`list` is actually a mutable
11521152
sequence type, as documented in :ref:`typesseq-list` and :ref:`typesseq`.
@@ -1252,7 +1252,7 @@ are always available. They are listed here in alphabetical order.
12521252

12531253
.. _func-memoryview:
12541254
.. class:: memoryview(object)
1255-
:noindex:
1255+
:no-index-entry:
12561256

12571257
Return a "memory view" object created from the given argument. See
12581258
:ref:`typememoryview` for more information.
@@ -1731,7 +1731,7 @@ are always available. They are listed here in alphabetical order.
17311731
.. _func-range:
17321732
.. class:: range(stop)
17331733
range(start, stop, step=1)
1734-
:noindex:
1734+
:no-index-entry:
17351735

17361736
Rather than being a function, :class:`range` is actually an immutable
17371737
sequence type, as documented in :ref:`typesseq-range` and :ref:`typesseq`.
@@ -1799,7 +1799,7 @@ are always available. They are listed here in alphabetical order.
17991799
.. _func-set:
18001800
.. class:: set()
18011801
set(iterable)
1802-
:noindex:
1802+
:no-index-entry:
18031803

18041804
Return a new :class:`set` object, optionally with elements taken from
18051805
*iterable*. ``set`` is a built-in class. See :class:`set` and
@@ -1940,7 +1940,7 @@ are always available. They are listed here in alphabetical order.
19401940
.. _func-str:
19411941
.. class:: str(object='')
19421942
str(object=b'', encoding='utf-8', errors='strict')
1943-
:noindex:
1943+
:no-index-entry:
19441944

19451945
Return a :class:`str` version of *object*. See :func:`str` for details.
19461946

@@ -2056,7 +2056,7 @@ are always available. They are listed here in alphabetical order.
20562056
.. _func-tuple:
20572057
.. class:: tuple()
20582058
tuple(iterable)
2059-
:noindex:
2059+
:no-index-entry:
20602060

20612061
Rather than being a function, :class:`tuple` is actually an immutable
20622062
sequence type, as documented in :ref:`typesseq-tuple` and :ref:`typesseq`.

0 commit comments

Comments
 (0)