Skip to content
Closed

Spam #142099

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Doc/library/functions.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
.. XXX document all delegations to __special__ methods
.. _built-in-funcs:

Built-in Functions
.. Built-in Functions
==================

Check warning on line 5 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

Explicit markup ends without a blank line; unexpected unindent. [docutils]

The Python interpreter has a number of functions and types built into it that
.. _The Python interpreter has a number of functions and types built into it that

Check warning on line 7 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

malformed hyperlink target. [docutils]
are always available. They are listed here in alphabetical order.

Check warning on line 8 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

Explicit markup ends without a blank line; unexpected unindent. [docutils]

+---------------------------------------------------------------------------------------------------+
.. _+---------------------------------------------------------------------------------------------------+

Check warning on line 10 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

malformed hyperlink target. [docutils]
| Built-in Functions |

Check warning on line 11 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

Explicit markup ends without a blank line; unexpected unindent. [docutils]
+=========================+=======================+=======================+=========================+
.. _+=========================+=======================+=======================+=========================+

Check warning on line 12 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

malformed hyperlink target. [docutils]

Check warning on line 12 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

Line block ends without a blank line. [docutils]
| | **A** | | **E** | | **L** | | **R** |

Check warning on line 13 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

Explicit markup ends without a blank line; unexpected unindent. [docutils]
| | :func:`abs` | | :func:`enumerate` | | :func:`len` | | |func-range|_ |

Check warning on line 14 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

Line block ends without a blank line. [docutils]
| | :func:`aiter` | | :func:`eval` | | |func-list|_ | | :func:`repr` |
| | :func:`all` | | :func:`exec` | | :func:`locals` | | :func:`reversed` |
| | :func:`anext` | | | | | | :func:`round` |
Expand Down Expand Up @@ -40,10 +40,10 @@
| | | | :func:`iter` | | | | :func:`__import__` |
+-------------------------+-----------------------+-----------------------+-------------------------+

.. using :func:`dict` would create a link to another page, so local targets are
.. _using :func:`dict` would create a link to another page, so local targets are
used, with replacement texts to make the output in the table consistent

Check warning on line 44 in Doc/library/functions.rst

View workflow job for this annotation

GitHub Actions / Docs / Docs

malformed hyperlink target. [docutils]

.. |func-dict| replace:: ``dict()``
.. _|func-dict| replace:: ``dict()``
.. |func-frozenset| replace:: ``frozenset()``
.. |func-memoryview| replace:: ``memoryview()``
.. |func-set| replace:: ``set()``
Expand All @@ -54,15 +54,15 @@
.. |func-bytearray| replace:: ``bytearray()``
.. |func-bytes| replace:: ``bytes()``

.. function:: abs(number, /)
.. _function:: abs(number, /)

Return the absolute value of a number. The argument may be an
integer, a floating-point number, or an object implementing
:meth:`~object.__abs__`.
If the argument is a complex number, its magnitude is returned.


.. function:: aiter(async_iterable, /)
.. _function:: aiter(async_iterable, /)

Return an :term:`asynchronous iterator` for an :term:`asynchronous iterable`.
Equivalent to calling ``x.__aiter__()``.
Expand Down
Loading