diff options
author | Skip Montanaro <skip@pobox.com> | 2003-01-01 20:37:14 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-01-01 20:37:14 (GMT) |
commit | 0233bd9c7d7563392f3fc50d62d7508b52d7de2f (patch) | |
tree | dd580086f15d68028931b4becd722e8c3a08cd03 /Doc | |
parent | 1f041e7aa87e3e8b31c21d163db8b1e486b7a80a (diff) | |
download | cpython-0233bd9c7d7563392f3fc50d62d7508b52d7de2f.zip cpython-0233bd9c7d7563392f3fc50d62d7508b52d7de2f.tar.gz cpython-0233bd9c7d7563392f3fc50d62d7508b52d7de2f.tar.bz2 |
mention built-in constants.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libobjs.tex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/lib/libobjs.tex b/Doc/lib/libobjs.tex index 67df72c..86d91a1 100644 --- a/Doc/lib/libobjs.tex +++ b/Doc/lib/libobjs.tex @@ -1,6 +1,7 @@ -\chapter{Built-in Functions, Types, and Exceptions \label{builtin}} +\chapter{Built-In Objects \label{builtin}} -Names for built-in exceptions and functions are found in a separate +Names for built-in exceptions and functions and a number of constants are +found in a separate symbol table. This table is searched last when the interpreter looks up the meaning of a name, so local and global user-defined names can override built-in names. Built-in types are @@ -11,6 +12,7 @@ described together here for easy reference.\footnote{ \indexii{built-in}{types} \indexii{built-in}{exceptions} \indexii{built-in}{functions} +\indexii{built-in}{constants} \index{symbol table} The tables in this chapter document the priorities of operators by |