summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1998-03-10 05:21:39 (GMT)
committerFred Drake <fdrake@acm.org>1998-03-10 05:21:39 (GMT)
commit8aee0e0356a0b214bb8bae1c5605f385e774cc67 (patch)
treeb1d67b31598a9615ea989d546bd3645e9ce13e7c
parentd883ca1dcb32d7836dc226fd5c852e62bc4e5980 (diff)
downloadcpython-8aee0e0356a0b214bb8bae1c5605f385e774cc67.zip
cpython-8aee0e0356a0b214bb8bae1c5605f385e774cc67.tar.gz
cpython-8aee0e0356a0b214bb8bae1c5605f385e774cc67.tar.bz2
Add some more labels for logical addressing.
-rw-r--r--Doc/lib/libtypes.tex3
-rw-r--r--Doc/libtypes.tex3
2 files changed, 6 insertions, 0 deletions
diff --git a/Doc/lib/libtypes.tex b/Doc/lib/libtypes.tex
index 70940cf..d799a1c 100644
--- a/Doc/lib/libtypes.tex
+++ b/Doc/lib/libtypes.tex
@@ -662,6 +662,7 @@ source string) to the \code{exec} statement or the built-in
See the \emph{Python Reference Manual} for more information.
\subsubsection{Type Objects}
+\label{bltin-type-objects}
Type objects represent the various object types. An object's type is
accessed by the built-in function \code{type()}. There are no special
@@ -673,6 +674,7 @@ for all standard built-in types.
Types are written like this: \code{<type 'int'>}.
\subsubsection{The Null Object}
+\label{bltin-null-object}
This object is returned by functions that don't explicitly return a
value. It supports no special operations. There is exactly one null
@@ -681,6 +683,7 @@ object, named \code{None} (a built-in name).
It is written as \code{None}.
\subsubsection{File Objects}
+\label{bltin-file-objects}
File objects are implemented using \C{}'s \code{stdio} package and can be
created with the built-in function \code{open()} described under
diff --git a/Doc/libtypes.tex b/Doc/libtypes.tex
index 70940cf..d799a1c 100644
--- a/Doc/libtypes.tex
+++ b/Doc/libtypes.tex
@@ -662,6 +662,7 @@ source string) to the \code{exec} statement or the built-in
See the \emph{Python Reference Manual} for more information.
\subsubsection{Type Objects}
+\label{bltin-type-objects}
Type objects represent the various object types. An object's type is
accessed by the built-in function \code{type()}. There are no special
@@ -673,6 +674,7 @@ for all standard built-in types.
Types are written like this: \code{<type 'int'>}.
\subsubsection{The Null Object}
+\label{bltin-null-object}
This object is returned by functions that don't explicitly return a
value. It supports no special operations. There is exactly one null
@@ -681,6 +683,7 @@ object, named \code{None} (a built-in name).
It is written as \code{None}.
\subsubsection{File Objects}
+\label{bltin-file-objects}
File objects are implemented using \C{}'s \code{stdio} package and can be
created with the built-in function \code{open()} described under