Apparently the code to forestall Tk eating events was too aggressive (Tk user input...
[python/dscho.git] / Doc / lib / libobjs.tex
blobf20723869c3a6a828bfc96615f619b291d9f1b5c
1 \chapter{Built-in Types, Exceptions and Functions}
2 \nodename{Built-in Objects}
3 \label{builtin}
5 Names for built-in exceptions and functions are found in a separate
6 symbol table. This table is searched last when the interpreter looks
7 up the meaning of a name, so local and global
8 user-defined names can override built-in names. Built-in types are
9 described together here for easy reference.\footnote{
10 Most descriptions sorely lack explanations of the exceptions
11 that may be raised --- this will be fixed in a future version of
12 this manual.}
13 \indexii{built-in}{types}
14 \indexii{built-in}{exceptions}
15 \indexii{built-in}{functions}
16 \index{symbol table}
18 The tables in this chapter document the priorities of operators by
19 listing them in order of ascending priority (within a table) and
20 grouping operators that have the same priority in the same box.
21 Binary operators of the same priority group from left to right.
22 (Unary operators group from right to left, but there you have no real
23 choice.) See chapter 5 of the \citetitle[../ref/ref.html]{Python
24 Reference Manual} for the complete picture on operator priorities.