mirror of https://github.com/python/cpython
Promote built-in functions to come before built-in types.
This commit is contained in:
parent
1633a2e345
commit
b4ea9d0502
|
@ -67,9 +67,9 @@ and how to embed it in other applications.
|
||||||
\input{libintro} % Introduction
|
\input{libintro} % Introduction
|
||||||
|
|
||||||
\input{libobjs} % Built-in Types, Exceptions and Functions
|
\input{libobjs} % Built-in Types, Exceptions and Functions
|
||||||
|
\input{libfuncs}
|
||||||
\input{libstdtypes}
|
\input{libstdtypes}
|
||||||
\input{libexcs}
|
\input{libexcs}
|
||||||
\input{libfuncs}
|
|
||||||
|
|
||||||
\input{libpython} % Python Runtime Services
|
\input{libpython} % Python Runtime Services
|
||||||
\input{libsys}
|
\input{libsys}
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
\chapter{Built-in Types, Exceptions and Functions}
|
\chapter{Built-in Functions, Types, and Exceptions \label{builtin}}
|
||||||
\nodename{Built-in Objects}
|
|
||||||
\label{builtin}
|
|
||||||
|
|
||||||
Names for built-in exceptions and functions are found in a separate
|
Names for built-in exceptions and functions are found in a separate
|
||||||
symbol table. This table is searched last when the interpreter looks
|
symbol table. This table is searched last when the interpreter looks
|
||||||
|
|
Loading…
Reference in New Issue