diff options
author | Fred Drake <fdrake@acm.org> | 2001-06-23 05:27:20 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-06-23 05:27:20 (GMT) |
commit | 2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9 (patch) | |
tree | 0217d96d78f7433a7f71da7bffe7c5901a33e1b5 /Doc/ref/ref3.tex | |
parent | 8c96369513ded66146f9cf19678029615e29bcb7 (diff) | |
download | cpython-2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9.zip cpython-2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9.tar.gz cpython-2829f1cf99edb9f6f5f775d6b8ce8bd5b88c6ac9.tar.bz2 |
Fix a very minor (but annoying when looking for things!) markup nit.
Diffstat (limited to 'Doc/ref/ref3.tex')
-rw-r--r-- | Doc/ref/ref3.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index a82ce8c..06155c0 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -1,5 +1,6 @@ \chapter{Data model\label{datamodel}} + \section{Objects, values and types\label{objects}} \dfn{Objects} are Python's abstraction for data. All data in a Python @@ -95,6 +96,7 @@ lists. (Note that \samp{c = d = []} assigns the same object to both \code{c} and \code{d}.) + \section{The standard type hierarchy\label{types}} Below is a list of the types that are built into Python. Extension |