blob: 49a86fc757ed8c5ab077f15f3f5b6d2d18ed5dfd [file] [log] [blame]
Guido van Rossum5fdeeea1994-01-02 01:22:07 +00001\chapter{Built-in Types, Exceptions and Functions}
2
3\nodename{Built-in Objects}
4
5Names for built-in exceptions and functions are found in a separate
6symbol table. This table is searched last, so local and global
7user-defined names can override built-in names. Built-in types have
8no names but are created easily by constructing an object of the
9desired type (e.g., using a literal) and applying the built-in
10function \code{type()} to it. They are described together here for
11easy reference.%
12\footnote{Some descriptions sorely lack explanations of the exceptions
13 that may be raised --- this will be fixed in a future version of
14 this document.}
15\indexii{built-in}{types}
16\indexii{built-in}{exceptions}
17\indexii{built-in}{functions}
18\index{symbol table}
19\bifuncindex{type}