Skip to content

Commit 16ef6aa

Browse files
committed
addressed Hugo's feedback
1 parent fe39fea commit 16ef6aa

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

Doc/library/builtin-index.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
.. _builtin-index:
22

3-
##################################
4-
Built-in Functions and Classes
5-
##################################
3+
#######################
4+
Built-ins reference
5+
#######################
66

77
Python comes with a number of built-in functions and classes.
88

9-
The built-in classes include data types that would normally be considered part of the "core" of a
10-
language, such as numbers and lists. For these types, the Python language core
11-
defines the form of literals and places some constraints on their semantics, but
12-
does not fully define the semantics.
9+
The built-in classes include data types that would normally be considered part
10+
of the "core" of a language, such as numbers and lists. For these types, the
11+
Python language core defines the form of literals and places some constraints
12+
on their semantics, but does not fully define the semantics.
1313

14-
The built-ins also includes functions and exceptions --- objects that can
14+
The built-ins also include functions and exceptions --- objects that can
1515
be used by all Python code without the need of an :keyword:`import` statement.
1616
Some of these are defined by the core language, but many are not essential for
1717
the core semantics and are only described here.
1818

1919
.. We don't use :numbered: option for the TOC below as it enforces
2020
numbered sections for the entire builtin docs. If desired,
21-
:numbered: can be enabled on a per-module basis.
21+
:numbered: can be enabled on a per-page basis.
2222
.. toctree::
2323
:maxdepth: 2
2424

Doc/library/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.. _library-index:
22

33
###############################
4-
The Python Standard Library
4+
The Python standard library
55
###############################
66

77
While :ref:`reference-index` describes the exact syntax and
8-
semantics of the Python language, and :ref:`builtin-index` describes
8+
semantics of the Python language, and :ref:`builtin-index` describes
99
the built-ins, this library reference manual
1010
describes the standard library that is distributed with Python. It also
1111
describes some of the optional components that are commonly included

Doc/library/intro.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ source form. Some modules provide interfaces that are highly specific to
1414
Python, like printing a stack trace; some provide interfaces that are specific
1515
to particular operating systems, such as access to specific hardware; others
1616
provide interfaces that are specific to a particular application domain, like
17-
the web development. Some modules are available in all versions and ports of
17+
web development. Some modules are available in all versions and ports of
1818
Python; others are only available when the underlying system supports or
1919
requires them; yet others are available only when a particular configuration
2020
option was chosen at the time when Python was compiled and installed.
@@ -27,9 +27,9 @@ browse the table of contents (in front of the manual), or look for a specific
2727
function, module or term in the index (in the back). And finally, if you enjoy
2828
learning about random subjects, you choose a random page
2929
and read a section or two. Regardless of the order in which you
30-
read the sections of this manual, it helps to start with chapter
31-
:ref:`built-in-funcs`, as the remainder of the manual assumes familiarity with
32-
this material.
30+
read the sections of this manual, it helps to first read
31+
:ref:`built-in-funcs` in :ref:`builtin-index`, as the remainder of this section
32+
assumes familiarity with this material.
3333

3434
Let the show begin!
3535

0 commit comments

Comments
 (0)