diff options
author | Georg Brandl <georg@python.org> | 2014-10-11 14:32:34 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-11 14:32:34 +0200 |
commit | c5dd095a9b75b72ab7a7c9790dcf6d62fc050331 (patch) | |
tree | 24ee9bb64973bab8ab39977083f1b9ea8aa1212a /Doc/library/intro.rst | |
parent | 682124ccc3c7e07006ca99346f749689a5229459 (diff) | |
download | cpython-git-c5dd095a9b75b72ab7a7c9790dcf6d62fc050331.tar.gz |
Closes #21675: fix ordering of description in library intro
Diffstat (limited to 'Doc/library/intro.rst')
-rw-r--r-- | Doc/library/intro.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/library/intro.rst b/Doc/library/intro.rst index a0f2d6324f..e3283cac99 100644 --- a/Doc/library/intro.rst +++ b/Doc/library/intro.rst @@ -30,10 +30,8 @@ requires them; yet others are available only when a particular configuration option was chosen at the time when Python was compiled and installed. This manual is organized "from the inside out:" it first describes the built-in -data types, then the built-in functions and exceptions, and finally the modules, -grouped in chapters of related modules. The ordering of the chapters as well as -the ordering of the modules within each chapter is roughly from most relevant to -least important. +functions, data types and exceptions, and finally the modules, grouped in +chapters of related modules. This means that if you start reading this manual from the start, and skip to the next chapter when you get bored, you will get a reasonable overview of the |