Skip to content

Commit 73bd5bd

Browse files
[3.13] gh-99030: Added documentation links for types and exceptions (GH-123857) (#125764)
gh-99030: Added documentation links for types and exceptions (GH-123857) * Added documentation links for types and exceptions * Shortened description sentences * Change content * Change documentation * Move seealso * Add a spaces (cherry picked from commit 9256be7) Co-authored-by: RUANG (Roy James) <[email protected]>
1 parent 909d5ac commit 73bd5bd

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Doc/library/builtins.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
--------------
88

99
This module provides direct access to all 'built-in' identifiers of Python; for
10-
example, ``builtins.open`` is the full name for the built-in function
11-
:func:`open`. See :ref:`built-in-funcs` and :ref:`built-in-consts` for
12-
documentation.
13-
10+
example, ``builtins.open`` is the full name for the built-in function :func:`open`.
1411

1512
This module is not normally accessed explicitly by most applications, but can be
1613
useful in modules that provide objects with the same name as a built-in value,
@@ -40,3 +37,10 @@ available as part of their globals. The value of ``__builtins__`` is normally
4037
either this module or the value of this module's :attr:`~object.__dict__` attribute.
4138
Since this is an implementation detail, it may not be used by alternate
4239
implementations of Python.
40+
41+
.. seealso::
42+
43+
* :ref:`built-in-consts`
44+
* :ref:`bltin-exceptions`
45+
* :ref:`built-in-funcs`
46+
* :ref:`bltin-types`

0 commit comments

Comments
 (0)