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
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
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
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
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
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