1998-07-28 16:34:22 -03:00
|
|
|
\chapter{Data model\label{datamodel}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-06-23 02:27:20 -03:00
|
|
|
|
1998-07-28 16:34:22 -03:00
|
|
|
\section{Objects, values and types\label{objects}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\dfn{Objects} are Python's abstraction for data. All data in a Python
|
|
|
|
program is represented by objects or by relations between objects.
|
|
|
|
(In a sense, and in conformance to Von Neumann's model of a
|
1998-07-23 14:12:46 -03:00
|
|
|
``stored program computer,'' code is also represented by objects.)
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{object}
|
|
|
|
\index{data}
|
|
|
|
|
|
|
|
Every object has an identity, a type and a value. An object's
|
|
|
|
\emph{identity} never changes once it has been created; you may think
|
2002-06-04 13:25:57 -03:00
|
|
|
of it as the object's address in memory. The `\keyword{is}' operator
|
1998-10-01 17:40:43 -03:00
|
|
|
compares the identity of two objects; the
|
|
|
|
\function{id()}\bifuncindex{id} function returns an integer
|
|
|
|
representing its identity (currently implemented as its address).
|
1998-07-23 14:12:46 -03:00
|
|
|
An object's \dfn{type} is
|
2003-01-19 09:08:18 -04:00
|
|
|
also unchangeable.\footnote{Since Python 2.2, a gradual merging of
|
|
|
|
types and classes has been started that makes this and a few other
|
|
|
|
assertions made in this manual not 100\% accurate and complete:
|
|
|
|
for example, it \emph{is} now possible in some cases to change an
|
|
|
|
object's type, under certain controlled conditions. Until this manual
|
|
|
|
undergoes extensive revision, it must now be taken as authoritative
|
|
|
|
only regarding ``classic classes'', that are still the default, for
|
2005-12-26 14:06:17 -04:00
|
|
|
compatibility purposes, in Python 2.2 and 2.3. For more information,
|
|
|
|
see \url{http://www.python.org/doc/newstyle.html}.}
|
2003-01-19 09:08:18 -04:00
|
|
|
An object's type determines the operations that the object
|
1998-07-23 14:12:46 -03:00
|
|
|
supports (e.g., ``does it have a length?'') and also defines the
|
1998-10-01 17:40:43 -03:00
|
|
|
possible values for objects of that type. The
|
|
|
|
\function{type()}\bifuncindex{type} function returns an object's type
|
|
|
|
(which is an object itself). The \emph{value} of some
|
1998-05-06 16:52:49 -03:00
|
|
|
objects can change. Objects whose value can change are said to be
|
|
|
|
\emph{mutable}; objects whose value is unchangeable once they are
|
1998-07-23 14:12:46 -03:00
|
|
|
created are called \emph{immutable}.
|
1999-02-23 12:40:55 -04:00
|
|
|
(The value of an immutable container object that contains a reference
|
|
|
|
to a mutable object can change when the latter's value is changed;
|
|
|
|
however the container is still considered immutable, because the
|
|
|
|
collection of objects it contains cannot be changed. So, immutability
|
|
|
|
is not strictly the same as having an unchangeable value, it is more
|
|
|
|
subtle.)
|
1998-07-23 14:12:46 -03:00
|
|
|
An object's mutability is determined by its type; for instance,
|
|
|
|
numbers, strings and tuples are immutable, while dictionaries and
|
|
|
|
lists are mutable.
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{identity of an object}
|
|
|
|
\index{value of an object}
|
|
|
|
\index{type of an object}
|
|
|
|
\index{mutable object}
|
|
|
|
\index{immutable object}
|
|
|
|
|
|
|
|
Objects are never explicitly destroyed; however, when they become
|
|
|
|
unreachable they may be garbage-collected. An implementation is
|
1998-08-07 13:33:51 -03:00
|
|
|
allowed to postpone garbage collection or omit it altogether --- it is
|
|
|
|
a matter of implementation quality how garbage collection is
|
1998-05-06 16:52:49 -03:00
|
|
|
implemented, as long as no objects are collected that are still
|
|
|
|
reachable. (Implementation note: the current implementation uses a
|
2001-01-22 13:46:18 -04:00
|
|
|
reference-counting scheme with (optional) delayed detection of
|
2003-01-19 09:08:18 -04:00
|
|
|
cyclically linked garbage, which collects most objects as soon as they
|
2001-01-22 13:46:18 -04:00
|
|
|
become unreachable, but is not guaranteed to collect garbage
|
|
|
|
containing circular references. See the
|
|
|
|
\citetitle[../lib/module-gc.html]{Python Library Reference} for
|
|
|
|
information on controlling the collection of cyclic garbage.)
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{garbage collection}
|
|
|
|
\index{reference counting}
|
|
|
|
\index{unreachable object}
|
|
|
|
|
|
|
|
Note that the use of the implementation's tracing or debugging
|
|
|
|
facilities may keep objects alive that would normally be collectable.
|
1998-07-23 14:12:46 -03:00
|
|
|
Also note that catching an exception with a
|
1999-01-12 00:15:20 -04:00
|
|
|
`\keyword{try}...\keyword{except}' statement may keep objects alive.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
Some objects contain references to ``external'' resources such as open
|
|
|
|
files or windows. It is understood that these resources are freed
|
|
|
|
when the object is garbage-collected, but since garbage collection is
|
|
|
|
not guaranteed to happen, such objects also provide an explicit way to
|
|
|
|
release the external resource, usually a \method{close()} method.
|
1998-07-23 14:12:46 -03:00
|
|
|
Programs are strongly recommended to explicitly close such
|
1999-01-12 00:15:20 -04:00
|
|
|
objects. The `\keyword{try}...\keyword{finally}' statement provides
|
|
|
|
a convenient way to do this.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
Some objects contain references to other objects; these are called
|
|
|
|
\emph{containers}. Examples of containers are tuples, lists and
|
|
|
|
dictionaries. The references are part of a container's value. In
|
|
|
|
most cases, when we talk about the value of a container, we imply the
|
|
|
|
values, not the identities of the contained objects; however, when we
|
1998-07-23 14:12:46 -03:00
|
|
|
talk about the mutability of a container, only the identities of
|
|
|
|
the immediately contained objects are implied. So, if an immutable
|
|
|
|
container (like a tuple)
|
|
|
|
contains a reference to a mutable object, its value changes
|
|
|
|
if that mutable object is changed.
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{container}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
Types affect almost all aspects of object behavior. Even the importance
|
1998-05-06 16:52:49 -03:00
|
|
|
of object identity is affected in some sense: for immutable types,
|
|
|
|
operations that compute new values may actually return a reference to
|
|
|
|
any existing object with the same type and value, while for mutable
|
1998-07-23 14:12:46 -03:00
|
|
|
objects this is not allowed. E.g., after
|
1998-10-01 17:40:43 -03:00
|
|
|
\samp{a = 1; b = 1},
|
1998-05-06 16:52:49 -03:00
|
|
|
\code{a} and \code{b} may or may not refer to the same object with the
|
1998-07-23 14:12:46 -03:00
|
|
|
value one, depending on the implementation, but after
|
1998-10-01 17:40:43 -03:00
|
|
|
\samp{c = []; d = []}, \code{c} and \code{d}
|
1998-05-06 16:52:49 -03:00
|
|
|
are guaranteed to refer to two different, unique, newly created empty
|
|
|
|
lists.
|
1998-10-01 17:40:43 -03:00
|
|
|
(Note that \samp{c = d = []} assigns the same object to both
|
1998-07-23 14:12:46 -03:00
|
|
|
\code{c} and \code{d}.)
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-06-23 02:27:20 -03:00
|
|
|
|
1998-07-28 16:34:22 -03:00
|
|
|
\section{The standard type hierarchy\label{types}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
Below is a list of the types that are built into Python. Extension
|
2003-01-19 09:08:18 -04:00
|
|
|
modules (written in C, Java, or other languages, depending on
|
|
|
|
the implementation) can define additional types. Future versions of
|
1998-07-23 14:12:46 -03:00
|
|
|
Python may add types to the type hierarchy (e.g., rational
|
1998-05-06 16:52:49 -03:00
|
|
|
numbers, efficiently stored arrays of integers, etc.).
|
|
|
|
\index{type}
|
|
|
|
\indexii{data}{type}
|
|
|
|
\indexii{type}{hierarchy}
|
|
|
|
\indexii{extension}{module}
|
|
|
|
\indexii{C}{language}
|
|
|
|
|
|
|
|
Some of the type descriptions below contain a paragraph listing
|
1998-07-23 14:12:46 -03:00
|
|
|
`special attributes.' These are attributes that provide access to the
|
1998-05-06 16:52:49 -03:00
|
|
|
implementation and are not intended for general use. Their definition
|
2001-12-03 13:32:27 -04:00
|
|
|
may change in the future.
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{attribute}
|
|
|
|
\indexii{special}{attribute}
|
|
|
|
\indexiii{generic}{special}{attribute}
|
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[None]
|
|
|
|
This type has a single value. There is a single object with this value.
|
|
|
|
This object is accessed through the built-in name \code{None}.
|
1998-07-23 14:12:46 -03:00
|
|
|
It is used to signify the absence of a value in many situations, e.g.,
|
|
|
|
it is returned from functions that don't explicitly return anything.
|
|
|
|
Its truth value is false.
|
2004-01-01 01:43:53 -04:00
|
|
|
\obindex{None}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-01-03 21:25:50 -04:00
|
|
|
\item[NotImplemented]
|
|
|
|
This type has a single value. There is a single object with this value.
|
|
|
|
This object is accessed through the built-in name \code{NotImplemented}.
|
2001-01-18 11:17:06 -04:00
|
|
|
Numeric methods and rich comparison methods may return this value if
|
|
|
|
they do not implement the operation for the operands provided. (The
|
|
|
|
interpreter will then try the reflected operation, or some other
|
|
|
|
fallback, depending on the operator.) Its truth value is true.
|
2004-01-01 01:43:53 -04:00
|
|
|
\obindex{NotImplemented}
|
2001-01-03 21:25:50 -04:00
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
\item[Ellipsis]
|
|
|
|
This type has a single value. There is a single object with this value.
|
|
|
|
This object is accessed through the built-in name \code{Ellipsis}.
|
1998-10-01 17:40:43 -03:00
|
|
|
It is used to indicate the presence of the \samp{...} syntax in a
|
1998-07-23 14:12:46 -03:00
|
|
|
slice. Its truth value is true.
|
2002-04-15 23:03:05 -03:00
|
|
|
\obindex{Ellipsis}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\item[Numbers]
|
|
|
|
These are created by numeric literals and returned as results by
|
|
|
|
arithmetic operators and arithmetic built-in functions. Numeric
|
|
|
|
objects are immutable; once created their value never changes. Python
|
|
|
|
numbers are of course strongly related to mathematical numbers, but
|
|
|
|
subject to the limitations of numerical representation in computers.
|
|
|
|
\obindex{numeric}
|
|
|
|
|
2001-05-14 13:04:22 -03:00
|
|
|
Python distinguishes between integers, floating point numbers, and
|
|
|
|
complex numbers:
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
\item[Integers]
|
2005-09-12 09:49:38 -03:00
|
|
|
These represent elements from the mathematical set of integers
|
|
|
|
(positive and negative).
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{integer}
|
|
|
|
|
2002-04-03 18:41:51 -04:00
|
|
|
There are three types of integers:
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[Plain integers]
|
|
|
|
These represent numbers in the range -2147483648 through 2147483647.
|
|
|
|
(The range may be larger on machines with a larger natural word
|
|
|
|
size, but not smaller.)
|
2000-04-03 01:51:13 -03:00
|
|
|
When the result of an operation would fall outside this range, the
|
2003-01-19 09:08:18 -04:00
|
|
|
result is normally returned as a long integer (in some cases, the
|
|
|
|
exception \exception{OverflowError} is raised instead).
|
1998-05-06 16:52:49 -03:00
|
|
|
For the purpose of shift and mask operations, integers are assumed to
|
|
|
|
have a binary, 2's complement notation using 32 or more bits, and
|
|
|
|
hiding no bits from the user (i.e., all 4294967296 different bit
|
|
|
|
patterns correspond to different values).
|
|
|
|
\obindex{plain integer}
|
|
|
|
\withsubitem{(built-in exception)}{\ttindex{OverflowError}}
|
|
|
|
|
|
|
|
\item[Long integers]
|
|
|
|
These represent numbers in an unlimited range, subject to available
|
|
|
|
(virtual) memory only. For the purpose of shift and mask operations,
|
|
|
|
a binary representation is assumed, and negative numbers are
|
|
|
|
represented in a variant of 2's complement which gives the illusion of
|
|
|
|
an infinite string of sign bits extending to the left.
|
|
|
|
\obindex{long integer}
|
|
|
|
|
2002-04-03 18:41:51 -04:00
|
|
|
\item[Booleans]
|
|
|
|
These represent the truth values False and True. The two objects
|
|
|
|
representing the values False and True are the only Boolean objects.
|
|
|
|
The Boolean type is a subtype of plain integers, and Boolean values
|
|
|
|
behave like the values 0 and 1, respectively, in almost all contexts,
|
|
|
|
the exception being that when converted to a string, the strings
|
|
|
|
\code{"False"} or \code{"True"} are returned, respectively.
|
|
|
|
\obindex{Boolean}
|
|
|
|
\ttindex{False}
|
|
|
|
\ttindex{True}
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\end{description} % Integers
|
|
|
|
|
|
|
|
The rules for integer representation are intended to give the most
|
|
|
|
meaningful interpretation of shift and mask operations involving
|
|
|
|
negative integers and the least surprises when switching between the
|
2003-01-19 09:08:18 -04:00
|
|
|
plain and long integer domains. Any operation except left shift,
|
1998-05-06 16:52:49 -03:00
|
|
|
if it yields a result in the plain integer domain without causing
|
2003-01-19 09:08:18 -04:00
|
|
|
overflow, will yield the same result in the long integer domain or
|
1998-05-06 16:52:49 -03:00
|
|
|
when using mixed operands.
|
|
|
|
\indexii{integer}{representation}
|
|
|
|
|
|
|
|
\item[Floating point numbers]
|
|
|
|
These represent machine-level double precision floating point numbers.
|
2003-01-19 09:08:18 -04:00
|
|
|
You are at the mercy of the underlying machine architecture (and
|
|
|
|
C or Java implementation) for the accepted range and handling of overflow.
|
1998-07-23 14:12:46 -03:00
|
|
|
Python does not support single-precision floating point numbers; the
|
2001-07-13 23:12:27 -03:00
|
|
|
savings in processor and memory usage that are usually the reason for using
|
1998-07-23 14:12:46 -03:00
|
|
|
these is dwarfed by the overhead of using objects in Python, so there
|
|
|
|
is no reason to complicate the language with two kinds of floating
|
|
|
|
point numbers.
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{floating point}
|
|
|
|
\indexii{floating point}{number}
|
|
|
|
\indexii{C}{language}
|
2003-01-19 09:08:18 -04:00
|
|
|
\indexii{Java}{language}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
\item[Complex numbers]
|
|
|
|
These represent complex numbers as a pair of machine-level double
|
|
|
|
precision floating point numbers. The same caveats apply as for
|
2003-01-19 09:08:18 -04:00
|
|
|
floating point numbers. The real and imaginary parts of a complex
|
|
|
|
number \code{z} can be retrieved through the read-only attributes
|
|
|
|
\code{z.real} and \code{z.imag}.
|
1998-07-23 14:12:46 -03:00
|
|
|
\obindex{complex}
|
|
|
|
\indexii{complex}{number}
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\end{description} % Numbers
|
|
|
|
|
2002-04-03 18:41:51 -04:00
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\item[Sequences]
|
2001-02-22 17:28:04 -04:00
|
|
|
These represent finite ordered sets indexed by non-negative numbers.
|
1998-05-06 16:52:49 -03:00
|
|
|
The built-in function \function{len()}\bifuncindex{len} returns the
|
1998-07-23 14:12:46 -03:00
|
|
|
number of items of a sequence.
|
2000-07-16 16:05:38 -03:00
|
|
|
When the length of a sequence is \var{n}, the
|
1998-07-23 14:12:46 -03:00
|
|
|
index set contains the numbers 0, 1, \ldots, \var{n}-1. Item
|
1998-05-06 16:52:49 -03:00
|
|
|
\var{i} of sequence \var{a} is selected by \code{\var{a}[\var{i}]}.
|
2000-04-03 01:51:13 -03:00
|
|
|
\obindex{sequence}
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{index operation}
|
|
|
|
\index{item selection}
|
|
|
|
\index{subscription}
|
|
|
|
|
|
|
|
Sequences also support slicing: \code{\var{a}[\var{i}:\var{j}]}
|
1998-07-23 14:12:46 -03:00
|
|
|
selects all items with index \var{k} such that \var{i} \code{<=}
|
1998-05-06 16:52:49 -03:00
|
|
|
\var{k} \code{<} \var{j}. When used as an expression, a slice is a
|
1998-07-23 14:12:46 -03:00
|
|
|
sequence of the same type. This implies that the index set is
|
|
|
|
renumbered so that it starts at 0.
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{slicing}
|
|
|
|
|
2002-06-11 07:55:12 -03:00
|
|
|
Some sequences also support ``extended slicing'' with a third ``step''
|
|
|
|
parameter: \code{\var{a}[\var{i}:\var{j}:\var{k}]} selects all items
|
|
|
|
of \var{a} with index \var{x} where \code{\var{x} = \var{i} +
|
|
|
|
\var{n}*\var{k}}, \var{n} \code{>=} \code{0} and \var{i} \code{<=}
|
|
|
|
\var{x} \code{<} \var{j}.
|
|
|
|
\index{extended slicing}
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
Sequences are distinguished according to their mutability:
|
|
|
|
|
|
|
|
\begin{description}
|
1999-01-12 00:15:20 -04:00
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\item[Immutable sequences]
|
|
|
|
An object of an immutable sequence type cannot change once it is
|
|
|
|
created. (If the object contains references to other objects,
|
1998-07-23 14:12:46 -03:00
|
|
|
these other objects may be mutable and may be changed; however,
|
1998-05-06 16:52:49 -03:00
|
|
|
the collection of objects directly referenced by an immutable object
|
|
|
|
cannot change.)
|
|
|
|
\obindex{immutable sequence}
|
|
|
|
\obindex{immutable}
|
|
|
|
|
|
|
|
The following types are immutable sequences:
|
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[Strings]
|
1998-07-23 14:12:46 -03:00
|
|
|
The items of a string are characters. There is no separate
|
|
|
|
character type; a character is represented by a string of one item.
|
1998-05-06 16:52:49 -03:00
|
|
|
Characters represent (at least) 8-bit bytes. The built-in
|
|
|
|
functions \function{chr()}\bifuncindex{chr} and
|
|
|
|
\function{ord()}\bifuncindex{ord} convert between characters and
|
|
|
|
nonnegative integers representing the byte values. Bytes with the
|
1998-07-23 14:12:46 -03:00
|
|
|
values 0-127 usually represent the corresponding \ASCII{} values, but
|
|
|
|
the interpretation of values is up to the program. The string
|
|
|
|
data type is also used to represent arrays of bytes, e.g., to hold data
|
1998-05-06 16:52:49 -03:00
|
|
|
read from a file.
|
|
|
|
\obindex{string}
|
|
|
|
\index{character}
|
|
|
|
\index{byte}
|
2001-11-28 03:26:15 -04:00
|
|
|
\index{ASCII@\ASCII}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-11-28 03:26:15 -04:00
|
|
|
(On systems whose native character set is not \ASCII, strings may use
|
1998-05-06 16:52:49 -03:00
|
|
|
EBCDIC in their internal representation, provided the functions
|
|
|
|
\function{chr()} and \function{ord()} implement a mapping between \ASCII{} and
|
|
|
|
EBCDIC, and string comparison preserves the \ASCII{} order.
|
|
|
|
Or perhaps someone can propose a better rule?)
|
2001-11-28 03:26:15 -04:00
|
|
|
\index{ASCII@\ASCII}
|
1998-05-06 16:52:49 -03:00
|
|
|
\index{EBCDIC}
|
|
|
|
\index{character set}
|
|
|
|
\indexii{string}{comparison}
|
|
|
|
\bifuncindex{chr}
|
|
|
|
\bifuncindex{ord}
|
|
|
|
|
2000-04-06 10:57:21 -03:00
|
|
|
\item[Unicode]
|
2002-09-24 18:09:13 -03:00
|
|
|
The items of a Unicode object are Unicode code units. A Unicode code
|
|
|
|
unit is represented by a Unicode object of one item and can hold
|
|
|
|
either a 16-bit or 32-bit value representing a Unicode ordinal (the
|
|
|
|
maximum value for the ordinal is given in \code{sys.maxunicode}, and
|
|
|
|
depends on how Python is configured at compile time). Surrogate pairs
|
|
|
|
may be present in the Unicode object, and will be reported as two
|
|
|
|
separate items. The built-in functions
|
2000-04-06 10:57:21 -03:00
|
|
|
\function{unichr()}\bifuncindex{unichr} and
|
2002-09-24 18:09:13 -03:00
|
|
|
\function{ord()}\bifuncindex{ord} convert between code units and
|
2000-04-06 10:57:21 -03:00
|
|
|
nonnegative integers representing the Unicode ordinals as defined in
|
|
|
|
the Unicode Standard 3.0. Conversion from and to other encodings are
|
2005-09-07 01:57:56 -03:00
|
|
|
possible through the Unicode method \method{encode()} and the built-in
|
2002-09-24 18:09:13 -03:00
|
|
|
function \function{unicode()}.\bifuncindex{unicode}
|
2000-04-06 10:57:21 -03:00
|
|
|
\obindex{unicode}
|
|
|
|
\index{character}
|
|
|
|
\index{integer}
|
2000-04-06 11:00:14 -03:00
|
|
|
\index{Unicode}
|
2000-04-06 10:57:21 -03:00
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\item[Tuples]
|
1998-07-23 14:12:46 -03:00
|
|
|
The items of a tuple are arbitrary Python objects.
|
|
|
|
Tuples of two or more items are formed by comma-separated lists
|
|
|
|
of expressions. A tuple of one item (a `singleton') can be formed
|
1998-05-06 16:52:49 -03:00
|
|
|
by affixing a comma to an expression (an expression by itself does
|
|
|
|
not create a tuple, since parentheses must be usable for grouping of
|
1998-07-23 14:12:46 -03:00
|
|
|
expressions). An empty tuple can be formed by an empty pair of
|
1998-05-06 16:52:49 -03:00
|
|
|
parentheses.
|
|
|
|
\obindex{tuple}
|
|
|
|
\indexii{singleton}{tuple}
|
|
|
|
\indexii{empty}{tuple}
|
|
|
|
|
|
|
|
\end{description} % Immutable sequences
|
|
|
|
|
|
|
|
\item[Mutable sequences]
|
|
|
|
Mutable sequences can be changed after they are created. The
|
|
|
|
subscription and slicing notations can be used as the target of
|
|
|
|
assignment and \keyword{del} (delete) statements.
|
2000-07-16 16:05:38 -03:00
|
|
|
\obindex{mutable sequence}
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{mutable}
|
|
|
|
\indexii{assignment}{statement}
|
|
|
|
\index{delete}
|
|
|
|
\stindex{del}
|
|
|
|
\index{subscription}
|
|
|
|
\index{slicing}
|
|
|
|
|
2003-01-19 09:08:18 -04:00
|
|
|
There is currently a single intrinsic mutable sequence type:
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[Lists]
|
1998-07-23 14:12:46 -03:00
|
|
|
The items of a list are arbitrary Python objects. Lists are formed
|
1998-05-06 16:52:49 -03:00
|
|
|
by placing a comma-separated list of expressions in square brackets.
|
|
|
|
(Note that there are no special cases needed to form lists of length 0
|
|
|
|
or 1.)
|
|
|
|
\obindex{list}
|
|
|
|
|
|
|
|
\end{description} % Mutable sequences
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
The extension module \module{array}\refstmodindex{array} provides an
|
|
|
|
additional example of a mutable sequence type.
|
|
|
|
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\end{description} % Sequences
|
|
|
|
|
2006-10-12 05:22:53 -03:00
|
|
|
|
|
|
|
\item[Set types]
|
|
|
|
These represent unordered, finite sets of unique, immutable objects.
|
|
|
|
As such, they cannot be indexed by any subscript. However, they can be
|
|
|
|
iterated over, and the built-in function \function{len()} returns the
|
|
|
|
number of items in a set. Common uses for sets are
|
|
|
|
fast membership testing, removing duplicates from a sequence, and
|
|
|
|
computing mathematical operations such as intersection, union, difference,
|
|
|
|
and symmetric difference.
|
|
|
|
\bifuncindex{len}
|
|
|
|
\obindex{set type}
|
|
|
|
|
|
|
|
For set elements, the same immutability rules apply as for dictionary
|
|
|
|
keys. Note that numeric types obey the normal rules for numeric
|
|
|
|
comparison: if two numbers compare equal (e.g., \code{1} and
|
|
|
|
\code{1.0}), only one of them can be contained in a set.
|
|
|
|
|
|
|
|
There are currently two intrinsic set types:
|
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[Sets]
|
|
|
|
These\obindex{set} represent a mutable set. They are created by the
|
|
|
|
built-in \function{set()} constructor and can be modified afterwards
|
|
|
|
by several methods, such as \method{add()}.
|
|
|
|
|
|
|
|
\item[Frozen sets]
|
|
|
|
These\obindex{frozenset} represent an immutable set. They are created by
|
|
|
|
the built-in \function{frozenset()} constructor. As a frozenset is
|
|
|
|
immutable and hashable, it can be used again as an element of another set,
|
|
|
|
or as a dictionary key.
|
|
|
|
|
|
|
|
\end{description} % Set types
|
|
|
|
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
\item[Mappings]
|
1998-05-06 16:52:49 -03:00
|
|
|
These represent finite sets of objects indexed by arbitrary index sets.
|
1998-07-23 14:12:46 -03:00
|
|
|
The subscript notation \code{a[k]} selects the item indexed
|
1998-05-06 16:52:49 -03:00
|
|
|
by \code{k} from the mapping \code{a}; this can be used in
|
|
|
|
expressions and as the target of assignments or \keyword{del} statements.
|
1998-07-23 14:12:46 -03:00
|
|
|
The built-in function \function{len()} returns the number of items
|
1998-05-06 16:52:49 -03:00
|
|
|
in a mapping.
|
|
|
|
\bifuncindex{len}
|
|
|
|
\index{subscription}
|
|
|
|
\obindex{mapping}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
There is currently a single intrinsic mapping type:
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[Dictionaries]
|
1999-02-23 14:50:38 -04:00
|
|
|
These\obindex{dictionary} represent finite sets of objects indexed by
|
|
|
|
nearly arbitrary values. The only types of values not acceptable as
|
|
|
|
keys are values containing lists or dictionaries or other mutable
|
|
|
|
types that are compared by value rather than by object identity, the
|
|
|
|
reason being that the efficient implementation of dictionaries
|
|
|
|
requires a key's hash value to remain constant.
|
1998-05-06 16:52:49 -03:00
|
|
|
Numeric types used for keys obey the normal rules for numeric
|
1998-07-23 14:12:46 -03:00
|
|
|
comparison: if two numbers compare equal (e.g., \code{1} and
|
1998-05-06 16:52:49 -03:00
|
|
|
\code{1.0}) then they can be used interchangeably to index the same
|
|
|
|
dictionary entry.
|
|
|
|
|
2003-01-19 09:08:18 -04:00
|
|
|
Dictionaries are mutable; they can be created by the
|
2003-03-20 14:17:16 -04:00
|
|
|
\code{\{...\}} notation (see section~\ref{dict}, ``Dictionary
|
1999-02-23 14:50:38 -04:00
|
|
|
Displays'').
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
The extension modules \module{dbm}\refstmodindex{dbm},
|
2005-10-30 01:29:49 -03:00
|
|
|
\module{gdbm}\refstmodindex{gdbm}, and
|
|
|
|
\module{bsddb}\refstmodindex{bsddb} provide additional examples of
|
|
|
|
mapping types.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\end{description} % Mapping types
|
|
|
|
|
|
|
|
\item[Callable types]
|
1999-02-23 14:50:38 -04:00
|
|
|
These\obindex{callable} are the types to which the function call
|
2003-03-20 14:17:16 -04:00
|
|
|
operation (see section~\ref{calls}, ``Calls'') can be applied:
|
1998-05-06 16:52:49 -03:00
|
|
|
\indexii{function}{call}
|
|
|
|
\index{invocation}
|
|
|
|
\indexii{function}{argument}
|
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[User-defined functions]
|
|
|
|
A user-defined function object is created by a function definition
|
2003-03-20 14:17:16 -04:00
|
|
|
(see section~\ref{function}, ``Function definitions''). It should be
|
1998-07-23 14:12:46 -03:00
|
|
|
called with an argument
|
1998-05-06 16:52:49 -03:00
|
|
|
list containing the same number of items as the function's formal
|
|
|
|
parameter list.
|
|
|
|
\indexii{user-defined}{function}
|
|
|
|
\obindex{function}
|
|
|
|
\obindex{user-defined function}
|
|
|
|
|
2004-08-12 15:12:44 -03:00
|
|
|
Special attributes:
|
|
|
|
|
|
|
|
\begin{tableiii}{lll}{member}{Attribute}{Meaning}{}
|
|
|
|
\lineiii{func_doc}{The function's documentation string, or
|
|
|
|
\code{None} if unavailable}{Writable}
|
|
|
|
|
|
|
|
\lineiii{__doc__}{Another way of spelling
|
|
|
|
\member{func_doc}}{Writable}
|
|
|
|
|
|
|
|
\lineiii{func_name}{The function's name}{Writable}
|
|
|
|
|
|
|
|
\lineiii{__name__}{Another way of spelling
|
|
|
|
\member{func_name}}{Writable}
|
|
|
|
|
|
|
|
\lineiii{__module__}{The name of the module the function was defined
|
|
|
|
in, or \code{None} if unavailable.}{Writable}
|
|
|
|
|
2005-04-26 02:18:53 -03:00
|
|
|
\lineiii{func_defaults}{A tuple containing default argument values
|
2004-08-12 15:12:44 -03:00
|
|
|
for those arguments that have defaults, or \code{None} if no
|
|
|
|
arguments have a default value}{Writable}
|
|
|
|
|
|
|
|
\lineiii{func_code}{The code object representing the compiled
|
|
|
|
function body.}{Writable}
|
|
|
|
|
|
|
|
\lineiii{func_globals}{A reference to the dictionary that holds the
|
|
|
|
function's global variables --- the global namespace of the module
|
|
|
|
in which the function was defined.}{Read-only}
|
|
|
|
|
|
|
|
\lineiii{func_dict}{The namespace supporting arbitrary function
|
|
|
|
attributes.}{Writable}
|
|
|
|
|
|
|
|
\lineiii{func_closure}{\code{None} or a tuple of cells that contain
|
|
|
|
bindings for the function's free variables.}{Read-only}
|
|
|
|
\end{tableiii}
|
|
|
|
|
|
|
|
Most of the attributes labelled ``Writable'' check the type of the
|
|
|
|
assigned value.
|
|
|
|
|
|
|
|
\versionchanged[\code{func_name} is now writable]{2.4}
|
|
|
|
|
|
|
|
Function objects also support getting and setting arbitrary
|
|
|
|
attributes, which can be used, for example, to attach metadata to
|
|
|
|
functions. Regular attribute dot-notation is used to get and set such
|
|
|
|
attributes. \emph{Note that the current implementation only supports
|
|
|
|
function attributes on user-defined functions. Function attributes on
|
|
|
|
built-in functions may be supported in the future.}
|
|
|
|
|
|
|
|
Additional information about a function's definition can be retrieved
|
|
|
|
from its code object; see the description of internal types below.
|
2001-03-23 13:23:50 -04:00
|
|
|
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(function attribute)}{
|
|
|
|
\ttindex{func_doc}
|
|
|
|
\ttindex{__doc__}
|
|
|
|
\ttindex{__name__}
|
2003-01-31 14:52:45 -04:00
|
|
|
\ttindex{__module__}
|
2001-02-26 23:36:30 -04:00
|
|
|
\ttindex{__dict__}
|
1999-01-12 00:15:20 -04:00
|
|
|
\ttindex{func_defaults}
|
2002-04-01 13:58:39 -04:00
|
|
|
\ttindex{func_closure}
|
1999-01-12 00:15:20 -04:00
|
|
|
\ttindex{func_code}
|
2001-02-26 23:36:30 -04:00
|
|
|
\ttindex{func_globals}
|
|
|
|
\ttindex{func_dict}}
|
1998-07-23 14:54:36 -03:00
|
|
|
\indexii{global}{namespace}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\item[User-defined methods]
|
1998-07-23 14:12:46 -03:00
|
|
|
A user-defined method object combines a class, a class instance (or
|
2001-08-02 18:34:53 -03:00
|
|
|
\code{None}) and any callable object (normally a user-defined
|
|
|
|
function).
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{method}
|
|
|
|
\obindex{user-defined method}
|
|
|
|
\indexii{user-defined}{method}
|
|
|
|
|
|
|
|
Special read-only attributes: \member{im_self} is the class instance
|
1998-07-23 14:12:46 -03:00
|
|
|
object, \member{im_func} is the function object;
|
2003-06-25 15:29:36 -03:00
|
|
|
\member{im_class} is the class of \member{im_self} for bound methods
|
|
|
|
or the class that asked for the method for unbound methods;
|
1998-10-01 17:40:43 -03:00
|
|
|
\member{__doc__} is the method's documentation (same as
|
|
|
|
\code{im_func.__doc__}); \member{__name__} is the method name (same as
|
2003-01-31 14:52:45 -04:00
|
|
|
\code{im_func.__name__}); \member{__module__} is the name of the
|
|
|
|
module the method was defined in, or \code{None} if unavailable.
|
2001-12-07 19:13:53 -04:00
|
|
|
\versionchanged[\member{im_self} used to refer to the class that
|
|
|
|
defined the method]{2.2}
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(method attribute)}{
|
2003-01-31 14:52:45 -04:00
|
|
|
\ttindex{__doc__}
|
|
|
|
\ttindex{__name__}
|
|
|
|
\ttindex{__module__}
|
1999-01-12 00:15:20 -04:00
|
|
|
\ttindex{im_func}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{im_self}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2001-02-26 23:36:30 -04:00
|
|
|
Methods also support accessing (but not setting) the arbitrary
|
|
|
|
function attributes on the underlying function object.
|
|
|
|
|
2003-07-17 02:26:53 -03:00
|
|
|
User-defined method objects may be created when getting an attribute
|
|
|
|
of a class (perhaps via an instance of that class), if that attribute
|
|
|
|
is a user-defined function object, an unbound user-defined method object,
|
|
|
|
or a class method object.
|
|
|
|
When the attribute is a user-defined method object, a new
|
|
|
|
method object is only created if the class from which it is being
|
|
|
|
retrieved is the same as, or a derived class of, the class stored
|
|
|
|
in the original method object; otherwise, the original method object
|
|
|
|
is used as it is.
|
|
|
|
|
|
|
|
When a user-defined method object is created by retrieving
|
|
|
|
a user-defined function object from a class, its \member{im_self}
|
|
|
|
attribute is \code{None} and the method object is said to be unbound.
|
|
|
|
When one is created by retrieving a user-defined function object
|
|
|
|
from a class via one of its instances, its \member{im_self} attribute
|
|
|
|
is the instance, and the method object is said to be bound.
|
|
|
|
In either case, the new method's \member{im_class} attribute
|
|
|
|
is the class from which the retrieval takes place, and
|
|
|
|
its \member{im_func} attribute is the original function object.
|
|
|
|
\withsubitem{(method attribute)}{
|
|
|
|
\ttindex{im_class}\ttindex{im_func}\ttindex{im_self}}
|
|
|
|
|
|
|
|
When a user-defined method object is created by retrieving another
|
|
|
|
method object from a class or instance, the behaviour is the same
|
|
|
|
as for a function object, except that the \member{im_func} attribute
|
|
|
|
of the new instance is not the original method object but its
|
|
|
|
\member{im_func} attribute.
|
|
|
|
\withsubitem{(method attribute)}{
|
|
|
|
\ttindex{im_func}}
|
|
|
|
|
|
|
|
When a user-defined method object is created by retrieving a
|
|
|
|
class method object from a class or instance, its \member{im_self}
|
|
|
|
attribute is the class itself (the same as the \member{im_class}
|
|
|
|
attribute), and its \member{im_func} attribute is the function
|
|
|
|
object underlying the class method.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(method attribute)}{
|
2000-06-28 17:15:47 -03:00
|
|
|
\ttindex{im_class}\ttindex{im_func}\ttindex{im_self}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
|
|
|
When an unbound user-defined method object is called, the underlying
|
1998-10-01 17:40:43 -03:00
|
|
|
function (\member{im_func}) is called, with the restriction that the
|
1998-07-23 14:12:46 -03:00
|
|
|
first argument must be an instance of the proper class
|
1998-10-01 17:40:43 -03:00
|
|
|
(\member{im_class}) or of a derived class thereof.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
|
|
|
When a bound user-defined method object is called, the underlying
|
1998-10-01 17:40:43 -03:00
|
|
|
function (\member{im_func}) is called, inserting the class instance
|
|
|
|
(\member{im_self}) in front of the argument list. For instance, when
|
|
|
|
\class{C} is a class which contains a definition for a function
|
|
|
|
\method{f()}, and \code{x} is an instance of \class{C}, calling
|
1998-07-23 14:12:46 -03:00
|
|
|
\code{x.f(1)} is equivalent to calling \code{C.f(x, 1)}.
|
|
|
|
|
2003-07-17 02:26:53 -03:00
|
|
|
When a user-defined method object is derived from a class method object,
|
|
|
|
the ``class instance'' stored in \member{im_self} will actually be the
|
|
|
|
class itself, so that calling either \code{x.f(1)} or \code{C.f(1)} is
|
|
|
|
equivalent to calling \code{f(C,1)} where \code{f} is the underlying
|
|
|
|
function.
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
Note that the transformation from function object to (unbound or
|
|
|
|
bound) method object happens each time the attribute is retrieved from
|
|
|
|
the class or instance. In some cases, a fruitful optimization is to
|
|
|
|
assign the attribute to a local variable and call that local variable.
|
|
|
|
Also notice that this transformation only happens for user-defined
|
|
|
|
functions; other callable objects (and all non-callable objects) are
|
2000-06-28 17:15:47 -03:00
|
|
|
retrieved without transformation. It is also important to note that
|
|
|
|
user-defined functions which are attributes of a class instance are
|
|
|
|
not converted to bound methods; this \emph{only} happens when the
|
|
|
|
function is an attribute of the class.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2001-12-11 17:10:08 -04:00
|
|
|
\item[Generator functions\index{generator!function}\index{generator!iterator}]
|
|
|
|
A function or method which uses the \keyword{yield} statement (see
|
|
|
|
section~\ref{yield}, ``The \keyword{yield} statement'') is called a
|
|
|
|
\dfn{generator function}. Such a function, when called, always
|
|
|
|
returns an iterator object which can be used to execute the body of
|
|
|
|
the function: calling the iterator's \method{next()} method will
|
|
|
|
cause the function to execute until it provides a value using the
|
|
|
|
\keyword{yield} statement. When the function executes a
|
|
|
|
\keyword{return} statement or falls off the end, a
|
|
|
|
\exception{StopIteration} exception is raised and the iterator will
|
|
|
|
have reached the end of the set of values to be returned.
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\item[Built-in functions]
|
2005-07-02 07:27:31 -03:00
|
|
|
A built-in function object is a wrapper around a C function. Examples
|
1998-07-23 14:12:46 -03:00
|
|
|
of built-in functions are \function{len()} and \function{math.sin()}
|
|
|
|
(\module{math} is a standard built-in module).
|
|
|
|
The number and type of the arguments are
|
1998-05-06 16:52:49 -03:00
|
|
|
determined by the C function.
|
1998-10-01 17:40:43 -03:00
|
|
|
Special read-only attributes: \member{__doc__} is the function's
|
|
|
|
documentation string, or \code{None} if unavailable; \member{__name__}
|
|
|
|
is the function's name; \member{__self__} is set to \code{None} (but see
|
2003-01-31 14:52:45 -04:00
|
|
|
the next item); \member{__module__} is the name of the module the
|
|
|
|
function was defined in or \code{None} if unavailable.
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{built-in function}
|
|
|
|
\obindex{function}
|
|
|
|
\indexii{C}{language}
|
|
|
|
|
|
|
|
\item[Built-in methods]
|
|
|
|
This is really a different disguise of a built-in function, this time
|
2003-01-19 09:08:18 -04:00
|
|
|
containing an object passed to the C function as an implicit extra
|
1998-07-23 14:12:46 -03:00
|
|
|
argument. An example of a built-in method is
|
2003-01-19 09:08:18 -04:00
|
|
|
\code{\var{alist}.append()}, assuming
|
|
|
|
\var{alist} is a list object.
|
1998-10-01 17:40:43 -03:00
|
|
|
In this case, the special read-only attribute \member{__self__} is set
|
2001-12-11 17:10:08 -04:00
|
|
|
to the object denoted by \var{list}.
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{built-in method}
|
|
|
|
\obindex{method}
|
|
|
|
\indexii{built-in}{method}
|
|
|
|
|
2003-07-15 17:45:16 -03:00
|
|
|
\item[Class Types]
|
|
|
|
Class types, or ``new-style classes,'' are callable. These objects
|
|
|
|
normally act as factories for new instances of themselves, but
|
|
|
|
variations are possible for class types that override
|
|
|
|
\method{__new__()}. The arguments of the call are passed to
|
|
|
|
\method{__new__()} and, in the typical case, to \method{__init__()} to
|
|
|
|
initialize the new instance.
|
|
|
|
|
|
|
|
\item[Classic Classes]
|
1998-07-23 14:12:46 -03:00
|
|
|
Class objects are described below. When a class object is called,
|
|
|
|
a new class instance (also described below) is created and
|
1998-05-06 16:52:49 -03:00
|
|
|
returned. This implies a call to the class's \method{__init__()} method
|
|
|
|
if it has one. Any arguments are passed on to the \method{__init__()}
|
1998-07-23 14:12:46 -03:00
|
|
|
method. If there is no \method{__init__()} method, the class must be called
|
1998-05-06 16:52:49 -03:00
|
|
|
without arguments.
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(object method)}{\ttindex{__init__()}}
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{class}
|
|
|
|
\obindex{class instance}
|
|
|
|
\obindex{instance}
|
|
|
|
\indexii{class object}{call}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
\item[Class instances]
|
|
|
|
Class instances are described below. Class instances are callable
|
1998-10-01 17:40:43 -03:00
|
|
|
only when the class has a \method{__call__()} method; \code{x(arguments)}
|
1998-07-23 14:12:46 -03:00
|
|
|
is a shorthand for \code{x.__call__(arguments)}.
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\end{description}
|
|
|
|
|
|
|
|
\item[Modules]
|
2003-03-20 14:17:16 -04:00
|
|
|
Modules are imported by the \keyword{import} statement (see
|
2003-07-15 19:03:00 -03:00
|
|
|
section~\ref{import}, ``The \keyword{import} statement'').%
|
|
|
|
\stindex{import}\obindex{module}
|
1998-07-23 14:54:36 -03:00
|
|
|
A module object has a namespace implemented by a dictionary object
|
1998-07-23 14:12:46 -03:00
|
|
|
(this is the dictionary referenced by the func_globals attribute of
|
|
|
|
functions defined in the module). Attribute references are translated
|
|
|
|
to lookups in this dictionary, e.g., \code{m.x} is equivalent to
|
|
|
|
\code{m.__dict__["x"]}.
|
|
|
|
A module object does not contain the code object used to
|
1998-05-06 16:52:49 -03:00
|
|
|
initialize the module (since it isn't needed once the initialization
|
|
|
|
is done).
|
|
|
|
|
1998-07-23 14:54:36 -03:00
|
|
|
Attribute assignment updates the module's namespace dictionary,
|
1998-10-01 17:40:43 -03:00
|
|
|
e.g., \samp{m.x = 1} is equivalent to \samp{m.__dict__["x"] = 1}.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-07-23 14:54:36 -03:00
|
|
|
Special read-only attribute: \member{__dict__} is the module's
|
|
|
|
namespace as a dictionary object.
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(module attribute)}{\ttindex{__dict__}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
|
|
|
Predefined (writable) attributes: \member{__name__}
|
|
|
|
is the module's name; \member{__doc__} is the
|
|
|
|
module's documentation string, or
|
1998-10-01 17:40:43 -03:00
|
|
|
\code{None} if unavailable; \member{__file__} is the pathname of the
|
1998-07-23 14:12:46 -03:00
|
|
|
file from which the module was loaded, if it was loaded from a file.
|
1998-10-01 17:40:43 -03:00
|
|
|
The \member{__file__} attribute is not present for C{} modules that are
|
1998-07-23 14:12:46 -03:00
|
|
|
statically linked into the interpreter; for extension modules loaded
|
|
|
|
dynamically from a shared library, it is the pathname of the shared
|
|
|
|
library file.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(module attribute)}{
|
|
|
|
\ttindex{__name__}
|
|
|
|
\ttindex{__doc__}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{__file__}}
|
1998-07-23 14:54:36 -03:00
|
|
|
\indexii{module}{namespace}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\item[Classes]
|
2003-03-20 14:17:16 -04:00
|
|
|
Class objects are created by class definitions (see
|
|
|
|
section~\ref{class}, ``Class definitions'').
|
1998-07-23 14:12:46 -03:00
|
|
|
A class has a namespace implemented by a dictionary object.
|
|
|
|
Class attribute references are translated to
|
|
|
|
lookups in this dictionary,
|
1998-10-01 17:40:43 -03:00
|
|
|
e.g., \samp{C.x} is translated to \samp{C.__dict__["x"]}.
|
1998-07-23 14:12:46 -03:00
|
|
|
When the attribute name is not found
|
1998-05-06 16:52:49 -03:00
|
|
|
there, the attribute search continues in the base classes. The search
|
1998-07-23 14:12:46 -03:00
|
|
|
is depth-first, left-to-right in the order of occurrence in the
|
1998-05-06 16:52:49 -03:00
|
|
|
base class list.
|
2003-07-17 02:26:53 -03:00
|
|
|
|
|
|
|
When a class attribute reference (for class \class{C}, say)
|
|
|
|
would yield a user-defined function object or
|
|
|
|
an unbound user-defined method object whose associated class is either
|
|
|
|
\class{C} or one of its base classes, it is transformed into an unbound
|
|
|
|
user-defined method object whose \member{im_class} attribute is~\class{C}.
|
|
|
|
When it would yield a class method object, it is transformed into
|
|
|
|
a bound user-defined method object whose \member{im_class} and
|
|
|
|
\member{im_self} attributes are both~\class{C}. When it would yield
|
|
|
|
a static method object, it is transformed into the object wrapped
|
|
|
|
by the static method object. See section~\ref{descriptors} for another
|
|
|
|
way in which attributes retrieved from a class may differ from those
|
|
|
|
actually contained in its \member{__dict__}.
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{class}
|
|
|
|
\obindex{class instance}
|
|
|
|
\obindex{instance}
|
|
|
|
\indexii{class object}{call}
|
|
|
|
\index{container}
|
|
|
|
\obindex{dictionary}
|
|
|
|
\indexii{class}{attribute}
|
|
|
|
|
|
|
|
Class attribute assignments update the class's dictionary, never the
|
|
|
|
dictionary of a base class.
|
|
|
|
\indexiii{class}{attribute}{assignment}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
A class object can be called (see above) to yield a class instance (see
|
|
|
|
below).
|
1998-05-06 16:52:49 -03:00
|
|
|
\indexii{class object}{call}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
Special attributes: \member{__name__} is the class name;
|
|
|
|
\member{__module__} is the module name in which the class was defined;
|
1998-07-23 14:54:36 -03:00
|
|
|
\member{__dict__} is the dictionary containing the class's namespace;
|
1998-07-23 14:12:46 -03:00
|
|
|
\member{__bases__} is a tuple (possibly empty or a singleton)
|
|
|
|
containing the base classes, in the order of their occurrence in the
|
1998-10-01 17:40:43 -03:00
|
|
|
base class list; \member{__doc__} is the class's documentation string,
|
1998-07-23 14:12:46 -03:00
|
|
|
or None if undefined.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(class attribute)}{
|
|
|
|
\ttindex{__name__}
|
|
|
|
\ttindex{__module__}
|
|
|
|
\ttindex{__dict__}
|
|
|
|
\ttindex{__bases__}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{__doc__}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\item[Class instances]
|
1998-07-23 14:12:46 -03:00
|
|
|
A class instance is created by calling a class object (see above).
|
|
|
|
A class instance has a namespace implemented as a dictionary which
|
|
|
|
is the first place in which
|
1998-05-06 16:52:49 -03:00
|
|
|
attribute references are searched. When an attribute is not found
|
1998-07-23 14:12:46 -03:00
|
|
|
there, and the instance's class has an attribute by that name,
|
|
|
|
the search continues with the class attributes. If a class attribute
|
2003-07-17 02:26:53 -03:00
|
|
|
is found that is a user-defined function object or an unbound
|
|
|
|
user-defined method object whose associated class is the class
|
|
|
|
(call it~\class{C}) of the instance for which the attribute reference
|
|
|
|
was initiated or one of its bases,
|
|
|
|
it is transformed into a bound user-defined method object whose
|
2006-09-01 23:43:17 -03:00
|
|
|
\member{im_class} attribute is~\class{C} and whose \member{im_self} attribute
|
2003-07-17 02:26:53 -03:00
|
|
|
is the instance. Static method and class method objects are also
|
|
|
|
transformed, as if they had been retrieved from class~\class{C};
|
|
|
|
see above under ``Classes''. See section~\ref{descriptors} for
|
|
|
|
another way in which attributes of a class retrieved via its
|
|
|
|
instances may differ from the objects actually stored in the
|
|
|
|
class's \member{__dict__}.
|
1998-07-23 14:12:46 -03:00
|
|
|
If no class attribute is found, and the object's class has a
|
1998-10-01 17:40:43 -03:00
|
|
|
\method{__getattr__()} method, that is called to satisfy the lookup.
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{class instance}
|
|
|
|
\obindex{instance}
|
|
|
|
\indexii{class}{instance}
|
|
|
|
\indexii{class instance}{attribute}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
Attribute assignments and deletions update the instance's dictionary,
|
1998-10-01 17:40:43 -03:00
|
|
|
never a class's dictionary. If the class has a \method{__setattr__()} or
|
|
|
|
\method{__delattr__()} method, this is called instead of updating the
|
1998-07-23 14:12:46 -03:00
|
|
|
instance dictionary directly.
|
1998-05-06 16:52:49 -03:00
|
|
|
\indexiii{class instance}{attribute}{assignment}
|
|
|
|
|
|
|
|
Class instances can pretend to be numbers, sequences, or mappings if
|
1998-07-23 14:12:46 -03:00
|
|
|
they have methods with certain special names. See
|
2003-03-20 14:17:16 -04:00
|
|
|
section~\ref{specialnames}, ``Special method names.''
|
2000-04-03 01:51:13 -03:00
|
|
|
\obindex{numeric}
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{sequence}
|
|
|
|
\obindex{mapping}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
Special attributes: \member{__dict__} is the attribute
|
|
|
|
dictionary; \member{__class__} is the instance's class.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(instance attribute)}{
|
|
|
|
\ttindex{__dict__}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{__class__}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\item[Files]
|
1999-11-10 12:13:25 -04:00
|
|
|
A file\obindex{file} object represents an open file. File objects are
|
|
|
|
created by the \function{open()}\bifuncindex{open} built-in function,
|
|
|
|
and also by
|
|
|
|
\withsubitem{(in module os)}{\ttindex{popen()}}\function{os.popen()},
|
|
|
|
\function{os.fdopen()}, and the
|
|
|
|
\method{makefile()}\withsubitem{(socket method)}{\ttindex{makefile()}}
|
|
|
|
method of socket objects (and perhaps by other functions or methods
|
|
|
|
provided by extension modules). The objects
|
|
|
|
\ttindex{sys.stdin}\code{sys.stdin},
|
|
|
|
\ttindex{sys.stdout}\code{sys.stdout} and
|
|
|
|
\ttindex{sys.stderr}\code{sys.stderr} are initialized to file objects
|
|
|
|
corresponding to the interpreter's standard\index{stdio} input, output
|
|
|
|
and error streams. See the \citetitle[../lib/lib.html]{Python Library
|
|
|
|
Reference} for complete documentation of file objects.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(in module sys)}{
|
|
|
|
\ttindex{stdin}
|
|
|
|
\ttindex{stdout}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{stderr}}
|
1999-11-10 12:13:25 -04:00
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\item[Internal types]
|
|
|
|
A few types used internally by the interpreter are exposed to the user.
|
1998-07-23 14:12:46 -03:00
|
|
|
Their definitions may change with future versions of the interpreter,
|
1998-05-06 16:52:49 -03:00
|
|
|
but they are mentioned here for completeness.
|
|
|
|
\index{internal type}
|
|
|
|
\index{types, internal}
|
|
|
|
|
|
|
|
\begin{description}
|
|
|
|
|
|
|
|
\item[Code objects]
|
1998-07-23 14:12:46 -03:00
|
|
|
Code objects represent \emph{byte-compiled} executable Python code, or
|
|
|
|
\emph{bytecode}.
|
1998-05-06 16:52:49 -03:00
|
|
|
The difference between a code
|
|
|
|
object and a function object is that the function object contains an
|
1998-07-23 14:12:46 -03:00
|
|
|
explicit reference to the function's globals (the module in which it
|
|
|
|
was defined), while a code object contains no context;
|
|
|
|
also the default argument values are stored in the function object,
|
|
|
|
not in the code object (because they represent values calculated at
|
|
|
|
run-time). Unlike function objects, code objects are immutable and
|
|
|
|
contain no references (directly or indirectly) to mutable objects.
|
|
|
|
\index{bytecode}
|
1998-05-06 16:52:49 -03:00
|
|
|
\obindex{code}
|
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
Special read-only attributes: \member{co_name} gives the function
|
|
|
|
name; \member{co_argcount} is the number of positional arguments
|
|
|
|
(including arguments with default values); \member{co_nlocals} is the
|
|
|
|
number of local variables used by the function (including arguments);
|
|
|
|
\member{co_varnames} is a tuple containing the names of the local
|
2001-03-23 13:23:50 -04:00
|
|
|
variables (starting with the argument names); \member{co_cellvars} is
|
|
|
|
a tuple containing the names of local variables that are referenced by
|
|
|
|
nested functions; \member{co_freevars} is a tuple containing the names
|
2002-04-01 14:53:36 -04:00
|
|
|
of free variables; \member{co_code} is a string representing the
|
|
|
|
sequence of bytecode instructions;
|
1998-11-25 13:58:50 -04:00
|
|
|
\member{co_consts} is a tuple containing the literals used by the
|
|
|
|
bytecode; \member{co_names} is a tuple containing the names used by
|
|
|
|
the bytecode; \member{co_filename} is the filename from which the code
|
|
|
|
was compiled; \member{co_firstlineno} is the first line number of the
|
|
|
|
function; \member{co_lnotab} is a string encoding the mapping from
|
2000-07-16 16:05:38 -03:00
|
|
|
byte code offsets to line numbers (for details see the source code of
|
1998-11-25 13:58:50 -04:00
|
|
|
the interpreter); \member{co_stacksize} is the required stack size
|
|
|
|
(including local variables); \member{co_flags} is an integer encoding
|
|
|
|
a number of flags for the interpreter.
|
2001-03-23 13:23:50 -04:00
|
|
|
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(code object attribute)}{
|
|
|
|
\ttindex{co_argcount}
|
|
|
|
\ttindex{co_code}
|
|
|
|
\ttindex{co_consts}
|
|
|
|
\ttindex{co_filename}
|
|
|
|
\ttindex{co_firstlineno}
|
|
|
|
\ttindex{co_flags}
|
|
|
|
\ttindex{co_lnotab}
|
|
|
|
\ttindex{co_name}
|
|
|
|
\ttindex{co_names}
|
|
|
|
\ttindex{co_nlocals}
|
|
|
|
\ttindex{co_stacksize}
|
2001-03-23 13:23:50 -04:00
|
|
|
\ttindex{co_varnames}
|
|
|
|
\ttindex{co_cellvars}
|
|
|
|
\ttindex{co_freevars}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2000-04-03 01:51:13 -03:00
|
|
|
The following flag bits are defined for \member{co_flags}: bit
|
|
|
|
\code{0x04} is set if the function uses the \samp{*arguments} syntax
|
|
|
|
to accept an arbitrary number of positional arguments; bit
|
|
|
|
\code{0x08} is set if the function uses the \samp{**keywords} syntax
|
2002-04-01 14:53:36 -04:00
|
|
|
to accept arbitrary keyword arguments; bit \code{0x20} is set if the
|
2003-06-15 19:57:44 -03:00
|
|
|
function is a generator.
|
|
|
|
\obindex{generator}
|
2002-04-01 14:53:36 -04:00
|
|
|
|
|
|
|
Future feature declarations (\samp{from __future__ import division})
|
|
|
|
also use bits in \member{co_flags} to indicate whether a code object
|
|
|
|
was compiled with a particular feature enabled: bit \code{0x2000} is
|
|
|
|
set if the function was compiled with future division enabled; bits
|
|
|
|
\code{0x10} and \code{0x1000} were used in earlier versions of Python.
|
|
|
|
|
|
|
|
Other bits in \member{co_flags} are reserved for internal use.
|
|
|
|
|
|
|
|
If\index{documentation string} a code object represents a function,
|
|
|
|
the first item in
|
2001-03-23 13:23:50 -04:00
|
|
|
\member{co_consts} is the documentation string of the function, or
|
|
|
|
\code{None} if undefined.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\item[Frame objects]
|
|
|
|
Frame objects represent execution frames. They may occur in traceback
|
|
|
|
objects (see below).
|
|
|
|
\obindex{frame}
|
|
|
|
|
|
|
|
Special read-only attributes: \member{f_back} is to the previous
|
|
|
|
stack frame (towards the caller), or \code{None} if this is the bottom
|
|
|
|
stack frame; \member{f_code} is the code object being executed in this
|
1998-07-23 14:12:46 -03:00
|
|
|
frame; \member{f_locals} is the dictionary used to look up local
|
|
|
|
variables; \member{f_globals} is used for global variables;
|
1998-10-01 17:40:43 -03:00
|
|
|
\member{f_builtins} is used for built-in (intrinsic) names;
|
|
|
|
\member{f_restricted} is a flag indicating whether the function is
|
2002-12-17 12:15:34 -04:00
|
|
|
executing in restricted execution mode; \member{f_lasti} gives the
|
1998-07-23 14:12:46 -03:00
|
|
|
precise instruction (this is an index into the bytecode string of
|
1998-05-06 16:52:49 -03:00
|
|
|
the code object).
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(frame attribute)}{
|
|
|
|
\ttindex{f_back}
|
|
|
|
\ttindex{f_code}
|
|
|
|
\ttindex{f_globals}
|
|
|
|
\ttindex{f_locals}
|
|
|
|
\ttindex{f_lasti}
|
|
|
|
\ttindex{f_builtins}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{f_restricted}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2005-07-02 07:27:31 -03:00
|
|
|
Special writable attributes: \member{f_trace}, if not \code{None}, is
|
|
|
|
a function called at the start of each source code line (this is used
|
|
|
|
by the debugger); \member{f_exc_type}, \member{f_exc_value},
|
|
|
|
\member{f_exc_traceback} represent the last exception raised in the
|
|
|
|
parent frame provided another exception was ever raised in the current
|
|
|
|
frame (in all other cases they are None); \member{f_lineno} is the
|
|
|
|
current line number of the frame --- writing to this from within a
|
|
|
|
trace function jumps to the given line (only for the bottom-most
|
|
|
|
frame). A debugger can implement a Jump command (aka Set Next
|
|
|
|
Statement) by writing to f_lineno.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(frame attribute)}{
|
|
|
|
\ttindex{f_trace}
|
|
|
|
\ttindex{f_exc_type}
|
|
|
|
\ttindex{f_exc_value}
|
2002-12-17 12:15:34 -04:00
|
|
|
\ttindex{f_exc_traceback}
|
|
|
|
\ttindex{f_lineno}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
\item[Traceback objects] \label{traceback}
|
|
|
|
Traceback objects represent a stack trace of an exception. A
|
|
|
|
traceback object is created when an exception occurs. When the search
|
|
|
|
for an exception handler unwinds the execution stack, at each unwound
|
|
|
|
level a traceback object is inserted in front of the current
|
1998-07-23 14:12:46 -03:00
|
|
|
traceback. When an exception handler is entered, the stack trace is
|
|
|
|
made available to the program.
|
2003-03-20 14:17:16 -04:00
|
|
|
(See section~\ref{try}, ``The \code{try} statement.'')
|
1998-07-23 14:12:46 -03:00
|
|
|
It is accessible as \code{sys.exc_traceback}, and also as the third
|
|
|
|
item of the tuple returned by \code{sys.exc_info()}. The latter is
|
|
|
|
the preferred interface, since it works correctly when the program is
|
|
|
|
using multiple threads.
|
|
|
|
When the program contains no suitable handler, the stack trace is written
|
1998-05-06 16:52:49 -03:00
|
|
|
(nicely formatted) to the standard error stream; if the interpreter is
|
|
|
|
interactive, it is also made available to the user as
|
|
|
|
\code{sys.last_traceback}.
|
|
|
|
\obindex{traceback}
|
|
|
|
\indexii{stack}{trace}
|
|
|
|
\indexii{exception}{handler}
|
|
|
|
\indexii{execution}{stack}
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(in module sys)}{
|
|
|
|
\ttindex{exc_info}
|
|
|
|
\ttindex{exc_traceback}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{last_traceback}}
|
1998-07-23 14:12:46 -03:00
|
|
|
\ttindex{sys.exc_info}
|
1998-05-06 16:52:49 -03:00
|
|
|
\ttindex{sys.exc_traceback}
|
|
|
|
\ttindex{sys.last_traceback}
|
|
|
|
|
|
|
|
Special read-only attributes: \member{tb_next} is the next level in the
|
|
|
|
stack trace (towards the frame where the exception occurred), or
|
|
|
|
\code{None} if there is no next level; \member{tb_frame} points to the
|
|
|
|
execution frame of the current level; \member{tb_lineno} gives the line
|
|
|
|
number where the exception occurred; \member{tb_lasti} indicates the
|
|
|
|
precise instruction. The line number and last instruction in the
|
|
|
|
traceback may differ from the line number of its frame object if the
|
|
|
|
exception occurred in a \keyword{try} statement with no matching
|
|
|
|
except clause or with a finally clause.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(traceback attribute)}{
|
|
|
|
\ttindex{tb_next}
|
|
|
|
\ttindex{tb_frame}
|
|
|
|
\ttindex{tb_lineno}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{tb_lasti}}
|
1998-05-06 16:52:49 -03:00
|
|
|
\stindex{try}
|
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
\item[Slice objects]
|
|
|
|
Slice objects are used to represent slices when \emph{extended slice
|
|
|
|
syntax} is used. This is a slice using two colons, or multiple slices
|
|
|
|
or ellipses separated by commas, e.g., \code{a[i:j:step]}, \code{a[i:j,
|
2003-06-25 15:29:36 -03:00
|
|
|
k:l]}, or \code{a[..., i:j]}. They are also created by the built-in
|
1998-11-25 13:58:50 -04:00
|
|
|
\function{slice()}\bifuncindex{slice} function.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2000-07-16 16:05:38 -03:00
|
|
|
Special read-only attributes: \member{start} is the lower bound;
|
|
|
|
\member{stop} is the upper bound; \member{step} is the step value; each is
|
1998-07-23 14:12:46 -03:00
|
|
|
\code{None} if omitted. These attributes can have any type.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(slice object attribute)}{
|
|
|
|
\ttindex{start}
|
|
|
|
\ttindex{stop}
|
1998-11-25 13:58:50 -04:00
|
|
|
\ttindex{step}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-09-24 18:09:13 -03:00
|
|
|
Slice objects support one method:
|
|
|
|
|
|
|
|
\begin{methoddesc}[slice]{indices}{self, length}
|
|
|
|
This method takes a single integer argument \var{length} and computes
|
|
|
|
information about the extended slice that the slice object would
|
|
|
|
describe if applied to a sequence of \var{length} items. It returns a
|
|
|
|
tuple of three integers; respectively these are the \var{start} and
|
|
|
|
\var{stop} indices and the \var{step} or stride length of the slice.
|
|
|
|
Missing or out-of-bounds indices are handled in a manner consistent
|
|
|
|
with regular slices.
|
2002-07-19 12:47:06 -03:00
|
|
|
\versionadded{2.3}
|
2002-09-24 18:09:13 -03:00
|
|
|
\end{methoddesc}
|
2002-07-19 12:47:06 -03:00
|
|
|
|
2003-07-17 02:26:53 -03:00
|
|
|
\item[Static method objects]
|
|
|
|
Static method objects provide a way of defeating the transformation
|
|
|
|
of function objects to method objects described above. A static method
|
|
|
|
object is a wrapper around any other object, usually a user-defined
|
|
|
|
method object. When a static method object is retrieved from a class
|
|
|
|
or a class instance, the object actually returned is the wrapped object,
|
|
|
|
which is not subject to any further transformation. Static method
|
|
|
|
objects are not themselves callable, although the objects they
|
|
|
|
wrap usually are. Static method objects are created by the built-in
|
|
|
|
\function{staticmethod()} constructor.
|
|
|
|
|
|
|
|
\item[Class method objects]
|
|
|
|
A class method object, like a static method object, is a wrapper
|
|
|
|
around another object that alters the way in which that object
|
|
|
|
is retrieved from classes and class instances. The behaviour of
|
|
|
|
class method objects upon such retrieval is described above,
|
|
|
|
under ``User-defined methods''. Class method objects are created
|
|
|
|
by the built-in \function{classmethod()} constructor.
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
\end{description} % Internal types
|
|
|
|
|
|
|
|
\end{description} % Types
|
|
|
|
|
2005-12-04 12:07:15 -04:00
|
|
|
%=========================================================================
|
|
|
|
\section{New-style and classic classes}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2006-03-31 12:12:34 -04:00
|
|
|
Classes and instances come in two flavors: old-style or classic, and new-style.
|
2005-12-04 12:07:15 -04:00
|
|
|
|
2005-12-26 14:06:17 -04:00
|
|
|
Up to Python 2.1, old-style classes were the only flavour available to the
|
|
|
|
user. The concept of (old-style) class is unrelated to the concept of type: if
|
|
|
|
\var{x} is an instance of an old-style class, then \code{x.__class__}
|
|
|
|
designates the class of \var{x}, but \code{type(x)} is always \code{<type
|
|
|
|
'instance'>}. This reflects the fact that all old-style instances,
|
|
|
|
independently of their class, are implemented with a single built-in type,
|
|
|
|
called \code{instance}.
|
|
|
|
|
|
|
|
New-style classes were introduced in Python 2.2 to unify classes and types. A
|
|
|
|
new-style class neither more nor less than a user-defined type. If \var{x} is
|
|
|
|
an instance of a new-style class, then \code{type(x)} is the same as
|
|
|
|
\code{x.__class__}.
|
|
|
|
|
|
|
|
The major motivation for introducing new-style classes is to provide a unified
|
|
|
|
object model with a full meta-model. It also has a number of immediate
|
|
|
|
benefits, like the ability to subclass most built-in types, or the introduction
|
|
|
|
of "descriptors", which enable computed properties.
|
|
|
|
|
|
|
|
For compatibility reasons, classes are still old-style by default. New-style
|
|
|
|
classes are created by specifying another new-style class (i.e.\ a type) as a
|
|
|
|
parent class, or the "top-level type" \class{object} if no other parent is
|
|
|
|
needed. The behaviour of new-style classes differs from that of old-style
|
|
|
|
classes in a number of important details in addition to what \function{type}
|
|
|
|
returns. Some of these changes are fundamental to the new object model, like
|
|
|
|
the way special methods are invoked. Others are "fixes" that could not be
|
|
|
|
implemented before for compatibility concerns, like the method resolution order
|
|
|
|
in case of multiple inheritance.
|
|
|
|
|
2006-03-31 12:12:34 -04:00
|
|
|
This manual is not up-to-date with respect to new-style classes. For now,
|
2005-12-26 14:06:17 -04:00
|
|
|
please see \url{http://www.python.org/doc/newstyle.html} for more information.
|
2005-12-04 12:07:15 -04:00
|
|
|
|
2006-03-31 11:12:16 -04:00
|
|
|
The plan is to eventually drop old-style classes, leaving only the semantics of
|
|
|
|
new-style classes. This change will probably only be feasible in Python 3.0.
|
|
|
|
\index{class}{new-style}
|
|
|
|
\index{class}{classic}
|
|
|
|
\index{class}{old-style}
|
2005-12-04 12:07:15 -04:00
|
|
|
|
|
|
|
%=========================================================================
|
1998-07-28 16:34:22 -03:00
|
|
|
\section{Special method names\label{specialnames}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
A class can implement certain operations that are invoked by special
|
1998-08-28 17:03:12 -03:00
|
|
|
syntax (such as arithmetic operations or subscripting and slicing) by
|
2003-05-12 10:50:11 -03:00
|
|
|
defining methods with special names.\indexii{operator}{overloading}
|
|
|
|
This is Python's approach to \dfn{operator overloading}, allowing
|
|
|
|
classes to define their own behavior with respect to language
|
|
|
|
operators. For instance, if a class defines
|
1998-08-28 17:03:12 -03:00
|
|
|
a method named \method{__getitem__()}, and \code{x} is an instance of
|
2005-12-26 14:06:17 -04:00
|
|
|
this class, then \code{x[i]} is equivalent\footnote{This, and other
|
|
|
|
statements, are only roughly true for instances of new-style
|
|
|
|
classes.} to
|
2002-05-12 00:09:25 -03:00
|
|
|
\code{x.__getitem__(i)}. Except where mentioned, attempts to execute
|
|
|
|
an operation raise an exception when no appropriate method is defined.
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(mapping object method)}{\ttindex{__getitem__()}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2000-12-07 00:49:34 -04:00
|
|
|
When implementing a class that emulates any built-in type, it is
|
|
|
|
important that the emulation only be implemented to the degree that it
|
|
|
|
makes sense for the object being modelled. For example, some
|
|
|
|
sequences may work well with retrieval of individual elements, but
|
|
|
|
extracting a slice may not make sense. (One example of this is the
|
|
|
|
\class{NodeList} interface in the W3C's Document Object Model.)
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-07-28 16:34:22 -03:00
|
|
|
\subsection{Basic customization\label{customization}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2005-03-07 21:10:20 -04:00
|
|
|
\begin{methoddesc}[object]{__new__}{cls\optional{, \moreargs}}
|
|
|
|
Called to create a new instance of class \var{cls}. \method{__new__()}
|
2005-08-26 09:56:22 -03:00
|
|
|
is a static method (special-cased so you need not declare it as such)
|
2005-03-07 21:10:20 -04:00
|
|
|
that takes the class of which an instance was requested as its first
|
|
|
|
argument. The remaining arguments are those passed to the object
|
|
|
|
constructor expression (the call to the class). The return value of
|
|
|
|
\method{__new__()} should be the new object instance (usually an
|
|
|
|
instance of \var{cls}).
|
|
|
|
|
|
|
|
Typical implementations create a new instance of the class by invoking
|
|
|
|
the superclass's \method{__new__()} method using
|
|
|
|
\samp{super(\var{currentclass}, \var{cls}).__new__(\var{cls}[, ...])}
|
|
|
|
with appropriate arguments and then modifying the newly-created instance
|
|
|
|
as necessary before returning it.
|
|
|
|
|
|
|
|
If \method{__new__()} returns an instance of \var{cls}, then the new
|
|
|
|
instance's \method{__init__()} method will be invoked like
|
|
|
|
\samp{__init__(\var{self}[, ...])}, where \var{self} is the new instance
|
|
|
|
and the remaining arguments are the same as were passed to
|
|
|
|
\method{__new__()}.
|
|
|
|
|
|
|
|
If \method{__new__()} does not return an instance of \var{cls}, then the
|
|
|
|
new instance's \method{__init__()} method will not be invoked.
|
|
|
|
|
|
|
|
\method{__new__()} is intended mainly to allow subclasses of
|
|
|
|
immutable types (like int, str, or tuple) to customize instance
|
|
|
|
creation.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-08-02 12:53:05 -03:00
|
|
|
\begin{methoddesc}[object]{__init__}{self\optional{, \moreargs}}
|
|
|
|
Called\indexii{class}{constructor} when the instance is created. The
|
|
|
|
arguments are those passed to the class constructor expression. If a
|
2003-01-19 09:08:18 -04:00
|
|
|
base class has an \method{__init__()} method, the derived class's
|
|
|
|
\method{__init__()} method, if any, must explicitly call it to ensure proper
|
2001-08-02 12:53:05 -03:00
|
|
|
initialization of the base class part of the instance; for example:
|
|
|
|
\samp{BaseClass.__init__(\var{self}, [\var{args}...])}. As a special
|
2003-10-19 04:32:24 -03:00
|
|
|
constraint on constructors, no value may be returned; doing so will
|
2001-08-02 12:53:05 -03:00
|
|
|
cause a \exception{TypeError} to be raised at runtime.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__del__}{self}
|
1998-07-24 12:36:43 -03:00
|
|
|
Called when the instance is about to be destroyed. This is also
|
|
|
|
called a destructor\index{destructor}. If a base class
|
2003-01-19 09:08:18 -04:00
|
|
|
has a \method{__del__()} method, the derived class's \method{__del__()}
|
|
|
|
method, if any,
|
1998-05-06 16:52:49 -03:00
|
|
|
must explicitly call it to ensure proper deletion of the base class
|
1998-07-23 14:12:46 -03:00
|
|
|
part of the instance. Note that it is possible (though not recommended!)
|
|
|
|
for the \method{__del__()}
|
1998-05-06 16:52:49 -03:00
|
|
|
method to postpone destruction of the instance by creating a new
|
|
|
|
reference to it. It may then be called at a later time when this new
|
|
|
|
reference is deleted. It is not guaranteed that
|
|
|
|
\method{__del__()} methods are called for objects that still exist when
|
|
|
|
the interpreter exits.
|
|
|
|
\stindex{del}
|
|
|
|
|
2001-12-14 18:52:41 -04:00
|
|
|
\begin{notice}
|
|
|
|
\samp{del x} doesn't directly call
|
1998-07-23 14:12:46 -03:00
|
|
|
\code{x.__del__()} --- the former decrements the reference count for
|
2003-01-19 09:08:18 -04:00
|
|
|
\code{x} by one, and the latter is only called when \code{x}'s reference
|
1998-07-23 14:12:46 -03:00
|
|
|
count reaches zero. Some common situations that may prevent the
|
2003-01-19 09:08:18 -04:00
|
|
|
reference count of an object from going to zero include: circular
|
1998-07-23 14:12:46 -03:00
|
|
|
references between objects (e.g., a doubly-linked list or a tree data
|
|
|
|
structure with parent and child pointers); a reference to the object
|
|
|
|
on the stack frame of a function that caught an exception (the
|
|
|
|
traceback stored in \code{sys.exc_traceback} keeps the stack frame
|
|
|
|
alive); or a reference to the object on the stack frame that raised an
|
|
|
|
unhandled exception in interactive mode (the traceback stored in
|
|
|
|
\code{sys.last_traceback} keeps the stack frame alive). The first
|
|
|
|
situation can only be remedied by explicitly breaking the cycles; the
|
2001-12-14 18:52:41 -04:00
|
|
|
latter two situations can be resolved by storing \code{None} in
|
|
|
|
\code{sys.exc_traceback} or \code{sys.last_traceback}. Circular
|
|
|
|
references which are garbage are detected when the option cycle
|
|
|
|
detector is enabled (it's on by default), but can only be cleaned up
|
|
|
|
if there are no Python-level \method{__del__()} methods involved.
|
|
|
|
Refer to the documentation for the \ulink{\module{gc}
|
|
|
|
module}{../lib/module-gc.html} for more information about how
|
|
|
|
\method{__del__()} methods are handled by the cycle detector,
|
|
|
|
particularly the description of the \code{garbage} value.
|
|
|
|
\end{notice}
|
|
|
|
|
|
|
|
\begin{notice}[warning]
|
|
|
|
Due to the precarious circumstances under which
|
1998-08-28 17:03:12 -03:00
|
|
|
\method{__del__()} methods are invoked, exceptions that occur during their
|
1998-07-23 14:12:46 -03:00
|
|
|
execution are ignored, and a warning is printed to \code{sys.stderr}
|
2001-12-14 18:52:41 -04:00
|
|
|
instead. Also, when \method{__del__()} is invoked in response to a module
|
1998-07-23 14:12:46 -03:00
|
|
|
being deleted (e.g., when execution of the program is done), other
|
1998-08-28 17:03:12 -03:00
|
|
|
globals referenced by the \method{__del__()} method may already have been
|
|
|
|
deleted. For this reason, \method{__del__()} methods should do the
|
2002-09-08 18:10:54 -03:00
|
|
|
absolute minimum needed to maintain external invariants. Starting with
|
|
|
|
version 1.5, Python guarantees that globals whose name begins with a single
|
|
|
|
underscore are deleted from their module before other globals are deleted;
|
|
|
|
if no other references to such globals exist, this may help in assuring that
|
1998-07-23 14:12:46 -03:00
|
|
|
imported modules are still available at the time when the
|
2001-12-14 18:52:41 -04:00
|
|
|
\method{__del__()} method is called.
|
|
|
|
\end{notice}
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__repr__}{self}
|
1998-10-01 17:40:43 -03:00
|
|
|
Called by the \function{repr()}\bifuncindex{repr} built-in function
|
|
|
|
and by string conversions (reverse quotes) to compute the ``official''
|
2000-12-19 10:09:21 -04:00
|
|
|
string representation of an object. If at all possible, this should
|
2000-12-19 00:18:13 -04:00
|
|
|
look like a valid Python expression that could be used to recreate an
|
|
|
|
object with the same value (given an appropriate environment). If
|
|
|
|
this is not possible, a string of the form \samp{<\var{...some useful
|
|
|
|
description...}>} should be returned. The return value must be a
|
|
|
|
string object.
|
2003-01-19 09:08:18 -04:00
|
|
|
If a class defines \method{__repr__()} but not \method{__str__()},
|
|
|
|
then \method{__repr__()} is also used when an ``informal'' string
|
|
|
|
representation of instances of that class is required.
|
2000-12-19 00:18:13 -04:00
|
|
|
|
|
|
|
This is typically used for debugging, so it is important that the
|
|
|
|
representation is information-rich and unambiguous.
|
1998-05-06 16:52:49 -03:00
|
|
|
\indexii{string}{conversion}
|
|
|
|
\indexii{reverse}{quotes}
|
|
|
|
\indexii{backward}{quotes}
|
|
|
|
\index{back-quotes}
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__str__}{self}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called by the \function{str()}\bifuncindex{str} built-in function and
|
|
|
|
by the \keyword{print}\stindex{print} statement to compute the
|
1998-10-01 17:40:43 -03:00
|
|
|
``informal'' string representation of an object. This differs from
|
|
|
|
\method{__repr__()} in that it does not have to be a valid Python
|
|
|
|
expression: a more convenient or concise representation may be used
|
2000-12-19 00:18:13 -04:00
|
|
|
instead. The return value must be a string object.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-01-18 11:17:06 -04:00
|
|
|
\begin{methoddesc}[object]{__lt__}{self, other}
|
|
|
|
\methodline[object]{__le__}{self, other}
|
|
|
|
\methodline[object]{__eq__}{self, other}
|
|
|
|
\methodline[object]{__ne__}{self, other}
|
|
|
|
\methodline[object]{__gt__}{self, other}
|
|
|
|
\methodline[object]{__ge__}{self, other}
|
|
|
|
\versionadded{2.1}
|
|
|
|
These are the so-called ``rich comparison'' methods, and are called
|
|
|
|
for comparison operators in preference to \method{__cmp__()} below.
|
|
|
|
The correspondence between operator symbols and method names is as
|
|
|
|
follows:
|
|
|
|
\code{\var{x}<\var{y}} calls \code{\var{x}.__lt__(\var{y})},
|
|
|
|
\code{\var{x}<=\var{y}} calls \code{\var{x}.__le__(\var{y})},
|
|
|
|
\code{\var{x}==\var{y}} calls \code{\var{x}.__eq__(\var{y})},
|
|
|
|
\code{\var{x}!=\var{y}} and \code{\var{x}<>\var{y}} call
|
|
|
|
\code{\var{x}.__ne__(\var{y})},
|
|
|
|
\code{\var{x}>\var{y}} calls \code{\var{x}.__gt__(\var{y})}, and
|
|
|
|
\code{\var{x}>=\var{y}} calls \code{\var{x}.__ge__(\var{y})}.
|
|
|
|
These methods can return any value, but if the comparison operator is
|
|
|
|
used in a Boolean context, the return value should be interpretable as
|
|
|
|
a Boolean value, else a \exception{TypeError} will be raised.
|
2003-01-19 09:08:18 -04:00
|
|
|
By convention, \code{False} is used for false and \code{True} for true.
|
2001-01-18 11:17:06 -04:00
|
|
|
|
2003-07-16 16:40:23 -03:00
|
|
|
There are no implied relationships among the comparison operators.
|
2003-07-17 11:47:12 -03:00
|
|
|
The truth of \code{\var{x}==\var{y}} does not imply that \code{\var{x}!=\var{y}}
|
2005-09-07 01:57:56 -03:00
|
|
|
is false. Accordingly, when defining \method{__eq__()}, one should also
|
|
|
|
define \method{__ne__()} so that the operators will behave as expected.
|
2003-07-16 16:40:23 -03:00
|
|
|
|
2001-01-18 11:17:06 -04:00
|
|
|
There are no reflected (swapped-argument) versions of these methods
|
|
|
|
(to be used when the left argument does not support the operation but
|
|
|
|
the right argument does); rather, \method{__lt__()} and
|
|
|
|
\method{__gt__()} are each other's reflection, \method{__le__()} and
|
|
|
|
\method{__ge__()} are each other's reflection, and \method{__eq__()}
|
|
|
|
and \method{__ne__()} are their own reflection.
|
|
|
|
|
|
|
|
Arguments to rich comparison methods are never coerced. A rich
|
|
|
|
comparison method may return \code{NotImplemented} if it does not
|
|
|
|
implement the operation for a given pair of arguments.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__cmp__}{self, other}
|
2001-01-18 11:17:06 -04:00
|
|
|
Called by comparison operations if rich comparison (see above) is not
|
2001-05-29 13:02:35 -03:00
|
|
|
defined. Should return a negative integer if \code{self < other},
|
|
|
|
zero if \code{self == other}, a positive integer if \code{self >
|
|
|
|
other}. If no \method{__cmp__()}, \method{__eq__()} or
|
|
|
|
\method{__ne__()} operation is defined, class instances are compared
|
|
|
|
by object identity (``address''). See also the description of
|
|
|
|
\method{__hash__()} for some important notes on creating objects which
|
|
|
|
support custom comparison operations and are usable as dictionary
|
|
|
|
keys.
|
1998-07-23 14:12:46 -03:00
|
|
|
(Note: the restriction that exceptions are not propagated by
|
2003-01-19 09:08:18 -04:00
|
|
|
\method{__cmp__()} has been removed since Python 1.5.)
|
1998-05-06 16:52:49 -03:00
|
|
|
\bifuncindex{cmp}
|
|
|
|
\index{comparisons}
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2000-06-15 17:07:25 -03:00
|
|
|
\begin{methoddesc}[object]{__rcmp__}{self, other}
|
2001-01-04 11:11:48 -04:00
|
|
|
\versionchanged[No longer supported]{2.1}
|
2000-06-15 17:07:25 -03:00
|
|
|
\end{methoddesc}
|
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__hash__}{self}
|
2004-06-29 01:14:02 -03:00
|
|
|
Called for the key object for dictionary \obindex{dictionary}
|
1998-08-28 17:03:12 -03:00
|
|
|
operations, and by the built-in function
|
1998-05-06 16:52:49 -03:00
|
|
|
\function{hash()}\bifuncindex{hash}. Should return a 32-bit integer
|
|
|
|
usable as a hash value
|
|
|
|
for dictionary operations. The only required property is that objects
|
|
|
|
which compare equal have the same hash value; it is advised to somehow
|
1998-07-23 14:12:46 -03:00
|
|
|
mix together (e.g., using exclusive or) the hash values for the
|
1998-05-06 16:52:49 -03:00
|
|
|
components of the object that also play a part in comparison of
|
|
|
|
objects. If a class does not define a \method{__cmp__()} method it should
|
|
|
|
not define a \method{__hash__()} operation either; if it defines
|
2001-05-29 13:02:35 -03:00
|
|
|
\method{__cmp__()} or \method{__eq__()} but not \method{__hash__()},
|
|
|
|
its instances will not be usable as dictionary keys. If a class
|
|
|
|
defines mutable objects and implements a \method{__cmp__()} or
|
|
|
|
\method{__eq__()} method, it should not implement \method{__hash__()},
|
|
|
|
since the dictionary implementation requires that a key's hash value
|
|
|
|
is immutable (if the object's hash value changes, it will be in the
|
|
|
|
wrong hash bucket).
|
2006-08-09 04:57:39 -03:00
|
|
|
|
|
|
|
\versionchanged[\method{__hash__()} may now also return a long
|
|
|
|
integer object; the 32-bit integer is then derived from the hash
|
|
|
|
of that object]{2.5}
|
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(object method)}{\ttindex{__cmp__()}}
|
|
|
|
\end{methoddesc}
|
1998-08-28 17:03:12 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__nonzero__}{self}
|
2002-04-03 18:41:51 -04:00
|
|
|
Called to implement truth value testing, and the built-in operation
|
|
|
|
\code{bool()}; should return \code{False} or \code{True}, or their
|
|
|
|
integer equivalents \code{0} or \code{1}.
|
|
|
|
When this method is not defined, \method{__len__()} is
|
1998-08-28 17:03:12 -03:00
|
|
|
called, if it is defined (see below). If a class defines neither
|
|
|
|
\method{__len__()} nor \method{__nonzero__()}, all its instances are
|
|
|
|
considered true.
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(mapping object method)}{\ttindex{__len__()}}
|
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2002-04-11 09:39:35 -03:00
|
|
|
\begin{methoddesc}[object]{__unicode__}{self}
|
|
|
|
Called to implement \function{unicode()}\bifuncindex{unicode} builtin;
|
|
|
|
should return a Unicode object. When this method is not defined, string
|
|
|
|
conversion is attempted, and the result of string conversion is converted
|
|
|
|
to Unicode using the system default encoding.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-07-28 16:34:22 -03:00
|
|
|
\subsection{Customizing attribute access\label{attribute-access}}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-07-23 14:12:46 -03:00
|
|
|
The following methods can be defined to customize the meaning of
|
|
|
|
attribute access (use of, assignment to, or deletion of \code{x.name})
|
|
|
|
for class instances.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__getattr__}{self, name}
|
1998-05-06 16:52:49 -03:00
|
|
|
Called when an attribute lookup has not found the attribute in the
|
|
|
|
usual places (i.e. it is not an instance attribute nor is it found in
|
|
|
|
the class tree for \code{self}). \code{name} is the attribute name.
|
1998-07-23 14:12:46 -03:00
|
|
|
This method should return the (computed) attribute value or raise an
|
1998-08-28 17:03:12 -03:00
|
|
|
\exception{AttributeError} exception.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
|
|
|
Note that if the attribute is found through the normal mechanism,
|
1998-08-28 17:03:12 -03:00
|
|
|
\method{__getattr__()} is not called. (This is an intentional
|
|
|
|
asymmetry between \method{__getattr__()} and \method{__setattr__()}.)
|
1998-05-06 16:52:49 -03:00
|
|
|
This is done both for efficiency reasons and because otherwise
|
1998-08-28 17:03:12 -03:00
|
|
|
\method{__setattr__()} would have no way to access other attributes of
|
2003-02-28 10:11:45 -04:00
|
|
|
the instance. Note that at least for instance variables, you can fake
|
|
|
|
total control by not inserting any values in the instance attribute
|
|
|
|
dictionary (but instead inserting them in another object). See the
|
|
|
|
\method{__getattribute__()} method below for a way to actually get
|
|
|
|
total control in new-style classes.
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(object method)}{\ttindex{__setattr__()}}
|
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__setattr__}{self, name, value}
|
1998-05-06 16:52:49 -03:00
|
|
|
Called when an attribute assignment is attempted. This is called
|
1998-08-28 17:03:12 -03:00
|
|
|
instead of the normal mechanism (i.e.\ store the value in the instance
|
|
|
|
dictionary). \var{name} is the attribute name, \var{value} is the
|
1998-05-06 16:52:49 -03:00
|
|
|
value to be assigned to it.
|
|
|
|
|
1998-08-28 17:03:12 -03:00
|
|
|
If \method{__setattr__()} wants to assign to an instance attribute, it
|
|
|
|
should not simply execute \samp{self.\var{name} = value} --- this
|
|
|
|
would cause a recursive call to itself. Instead, it should insert the
|
|
|
|
value in the dictionary of instance attributes, e.g.,
|
2003-02-28 10:11:45 -04:00
|
|
|
\samp{self.__dict__[\var{name}] = value}. For new-style classes,
|
|
|
|
rather than accessing the instance dictionary, it should call the base
|
|
|
|
class method with the same name, for example,
|
|
|
|
\samp{object.__setattr__(self, name, value)}.
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(instance attribute)}{\ttindex{__dict__}}
|
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__delattr__}{self, name}
|
1998-08-28 17:03:12 -03:00
|
|
|
Like \method{__setattr__()} but for attribute deletion instead of
|
1998-11-25 13:58:50 -04:00
|
|
|
assignment. This should only be implemented if \samp{del
|
|
|
|
obj.\var{name}} is meaningful for the object.
|
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2003-03-05 10:20:58 -04:00
|
|
|
\subsubsection{More attribute access for new-style classes \label{new-style-attribute-access}}
|
2003-02-28 10:11:45 -04:00
|
|
|
|
|
|
|
The following methods only apply to new-style classes.
|
|
|
|
|
|
|
|
\begin{methoddesc}[object]{__getattribute__}{self, name}
|
|
|
|
Called unconditionally to implement attribute accesses for instances
|
2005-09-07 01:57:56 -03:00
|
|
|
of the class. If the class also defines \method{__getattr__()}, the latter
|
2005-07-02 07:27:31 -03:00
|
|
|
will not be called unless \method{__getattribute__()} either calls it
|
|
|
|
explicitly or raises an \exception{AttributeError}.
|
2003-02-28 10:11:45 -04:00
|
|
|
This method should return the (computed) attribute
|
|
|
|
value or raise an \exception{AttributeError} exception.
|
|
|
|
In order to avoid infinite recursion in this method, its
|
|
|
|
implementation should always call the base class method with the same
|
2003-03-20 14:17:16 -04:00
|
|
|
name to access any attributes it needs, for example,
|
2003-02-28 10:11:45 -04:00
|
|
|
\samp{object.__getattribute__(self, name)}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
2003-03-05 10:20:58 -04:00
|
|
|
\subsubsection{Implementing Descriptors \label{descriptors}}
|
2003-02-28 10:11:45 -04:00
|
|
|
|
|
|
|
The following methods only apply when an instance of the class
|
2003-03-20 14:17:16 -04:00
|
|
|
containing the method (a so-called \emph{descriptor} class) appears in
|
2003-02-28 10:11:45 -04:00
|
|
|
the class dictionary of another new-style class, known as the
|
|
|
|
\emph{owner} class. In the examples below, ``the attribute'' refers to
|
2003-03-20 14:17:16 -04:00
|
|
|
the attribute whose name is the key of the property in the owner
|
2004-05-06 09:44:29 -03:00
|
|
|
class' \code{__dict__}. Descriptors can only be implemented as
|
|
|
|
new-style classes themselves.
|
2003-02-28 10:11:45 -04:00
|
|
|
|
|
|
|
\begin{methoddesc}[object]{__get__}{self, instance, owner}
|
2003-03-20 14:17:16 -04:00
|
|
|
Called to get the attribute of the owner class (class attribute access)
|
2004-12-31 20:28:46 -04:00
|
|
|
or of an instance of that class (instance attribute access).
|
2003-02-28 10:11:45 -04:00
|
|
|
\var{owner} is always the owner class, while \var{instance} is the
|
|
|
|
instance that the attribute was accessed through, or \code{None} when
|
|
|
|
the attribute is accessed through the \var{owner}. This method should
|
|
|
|
return the (computed) attribute value or raise an
|
|
|
|
\exception{AttributeError} exception.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[object]{__set__}{self, instance, value}
|
2003-03-05 10:20:58 -04:00
|
|
|
Called to set the attribute on an instance \var{instance} of the owner
|
2003-02-28 10:11:45 -04:00
|
|
|
class to a new value, \var{value}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{methoddesc}[object]{__delete__}{self, instance}
|
2003-03-05 10:20:58 -04:00
|
|
|
Called to delete the attribute on an instance \var{instance} of the
|
|
|
|
owner class.
|
2003-02-28 10:11:45 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2003-06-26 00:11:20 -03:00
|
|
|
\subsubsection{Invoking Descriptors \label{descriptor-invocation}}
|
2003-06-25 15:29:36 -03:00
|
|
|
|
|
|
|
In general, a descriptor is an object attribute with ``binding behavior'',
|
|
|
|
one whose attribute access has been overridden by methods in the descriptor
|
2003-06-27 03:57:56 -03:00
|
|
|
protocol: \method{__get__()}, \method{__set__()}, and \method{__delete__()}.
|
2003-06-25 15:29:36 -03:00
|
|
|
If any of those methods are defined for an object, it is said to be a
|
|
|
|
descriptor.
|
|
|
|
|
|
|
|
The default behavior for attribute access is to get, set, or delete the
|
|
|
|
attribute from an object's dictionary. For instance, \code{a.x} has a
|
|
|
|
lookup chain starting with \code{a.__dict__['x']}, then
|
|
|
|
\code{type(a).__dict__['x']}, and continuing
|
|
|
|
through the base classes of \code{type(a)} excluding metaclasses.
|
|
|
|
|
|
|
|
However, if the looked-up value is an object defining one of the descriptor
|
|
|
|
methods, then Python may override the default behavior and invoke the
|
|
|
|
descriptor method instead. Where this occurs in the precedence chain depends
|
|
|
|
on which descriptor methods were defined and how they were called. Note that
|
|
|
|
descriptors are only invoked for new style objects or classes
|
2003-06-27 03:57:56 -03:00
|
|
|
(ones that subclass \class{object()} or \class{type()}).
|
2003-06-25 15:29:36 -03:00
|
|
|
|
|
|
|
The starting point for descriptor invocation is a binding, \code{a.x}.
|
|
|
|
How the arguments are assembled depends on \code{a}:
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
|
|
|
\item[Direct Call] The simplest and least common call is when user code
|
|
|
|
directly invokes a descriptor method: \code{x.__get__(a)}.
|
|
|
|
|
|
|
|
\item[Instance Binding] If binding to a new-style object instance,
|
|
|
|
\code{a.x} is transformed into the call:
|
|
|
|
\code{type(a).__dict__['x'].__get__(a, type(a))}.
|
|
|
|
|
|
|
|
\item[Class Binding] If binding to a new-style class, \code{A.x}
|
|
|
|
is transformed into the call: \code{A.__dict__['x'].__get__(None, A)}.
|
|
|
|
|
|
|
|
\item[Super Binding] If \code{a} is an instance of \class{super},
|
|
|
|
then the binding \code{super(B, obj).m()} searches
|
|
|
|
\code{obj.__class__.__mro__} for the base class \code{A} immediately
|
|
|
|
preceding \code{B} and then invokes the descriptor with the call:
|
|
|
|
\code{A.__dict__['m'].__get__(obj, A)}.
|
|
|
|
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
For instance bindings, the precedence of descriptor invocation depends
|
|
|
|
on the which descriptor methods are defined. Data descriptors define
|
2003-06-27 03:57:56 -03:00
|
|
|
both \method{__get__()} and \method{__set__()}. Non-data descriptors have
|
|
|
|
just the \method{__get__()} method. Data descriptors always override
|
2003-06-25 15:29:36 -03:00
|
|
|
a redefinition in an instance dictionary. In contrast, non-data
|
|
|
|
descriptors can be overridden by instances.
|
|
|
|
|
2003-06-27 03:57:56 -03:00
|
|
|
Python methods (including \function{staticmethod()} and \function{classmethod()})
|
2003-06-25 15:29:36 -03:00
|
|
|
are implemented as non-data descriptors. Accordingly, instances can
|
|
|
|
redefine and override methods. This allows individual instances to acquire
|
|
|
|
behaviors that differ from other instances of the same class.
|
|
|
|
|
2003-06-27 03:57:56 -03:00
|
|
|
The \function{property()} function is implemented as a data descriptor.
|
|
|
|
Accordingly, instances cannot override the behavior of a property.
|
|
|
|
|
|
|
|
|
|
|
|
\subsubsection{__slots__\label{slots}}
|
|
|
|
|
|
|
|
By default, instances of both old and new-style classes have a dictionary
|
|
|
|
for attribute storage. This wastes space for objects having very few instance
|
|
|
|
variables. The space consumption can become acute when creating large numbers
|
|
|
|
of instances.
|
|
|
|
|
|
|
|
The default can be overridden by defining \var{__slots__} in a new-style class
|
|
|
|
definition. The \var{__slots__} declaration takes a sequence of instance
|
|
|
|
variables and reserves just enough space in each instance to hold a value
|
|
|
|
for each variable. Space is saved because \var{__dict__} is not created for
|
|
|
|
each instance.
|
|
|
|
|
|
|
|
\begin{datadesc}{__slots__}
|
|
|
|
This class variable can be assigned a string, iterable, or sequence of strings
|
2003-06-29 01:53:23 -03:00
|
|
|
with variable names used by instances. If defined in a new-style class,
|
|
|
|
\var{__slots__} reserves space for the declared variables
|
2003-06-27 03:57:56 -03:00
|
|
|
and prevents the automatic creation of \var{__dict__} and \var{__weakref__}
|
|
|
|
for each instance.
|
|
|
|
\versionadded{2.2}
|
|
|
|
\end{datadesc}
|
|
|
|
|
|
|
|
\noindent
|
2003-06-29 01:53:23 -03:00
|
|
|
Notes on using \var{__slots__}
|
2003-06-27 03:57:56 -03:00
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
|
|
|
\item Without a \var{__dict__} variable, instances cannot be assigned new
|
|
|
|
variables not listed in the \var{__slots__} definition. Attempts to assign
|
|
|
|
to an unlisted variable name raises \exception{AttributeError}. If dynamic
|
|
|
|
assignment of new variables is desired, then add \code{'__dict__'} to the
|
|
|
|
sequence of strings in the \var{__slots__} declaration.
|
|
|
|
\versionchanged[Previously, adding \code{'__dict__'} to the \var{__slots__}
|
|
|
|
declaration would not enable the assignment of new attributes not
|
|
|
|
specifically listed in the sequence of instance variable names]{2.3}
|
|
|
|
|
|
|
|
\item Without a \var{__weakref__} variable for each instance, classes
|
|
|
|
defining \var{__slots__} do not support weak references to its instances.
|
|
|
|
If weak reference support is needed, then add \code{'__weakref__'} to the
|
|
|
|
sequence of strings in the \var{__slots__} declaration.
|
2003-06-29 01:53:23 -03:00
|
|
|
\versionchanged[Previously, adding \code{'__weakref__'} to the \var{__slots__}
|
2003-06-27 03:57:56 -03:00
|
|
|
declaration would not enable support for weak references]{2.3}
|
|
|
|
|
|
|
|
\item \var{__slots__} are implemented at the class level by creating
|
|
|
|
descriptors (\ref{descriptors}) for each variable name. As a result,
|
|
|
|
class attributes cannot be used to set default values for instance
|
|
|
|
variables defined by \var{__slots__}; otherwise, the class attribute would
|
|
|
|
overwrite the descriptor assignment.
|
|
|
|
|
|
|
|
\item If a class defines a slot also defined in a base class, the instance
|
|
|
|
variable defined by the base class slot is inaccessible (except by retrieving
|
|
|
|
its descriptor directly from the base class). This renders the meaning of the
|
|
|
|
program undefined. In the future, a check may be added to prevent this.
|
|
|
|
|
|
|
|
\item The action of a \var{__slots__} declaration is limited to the class
|
|
|
|
where it is defined. As a result, subclasses will have a \var{__dict__}
|
|
|
|
unless they also define \var{__slots__}.
|
|
|
|
|
|
|
|
\item \var{__slots__} do not work for classes derived from ``variable-length''
|
|
|
|
built-in types such as \class{long}, \class{str} and \class{tuple}.
|
|
|
|
|
2003-06-29 01:53:23 -03:00
|
|
|
\item Any non-string iterable may be assigned to \var{__slots__}.
|
2003-06-27 03:57:56 -03:00
|
|
|
Mappings may also be used; however, in the future, special meaning may
|
|
|
|
be assigned to the values corresponding to each key.
|
|
|
|
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
|
|
|
|
\subsection{Customizing class creation\label{metaclasses}}
|
|
|
|
|
|
|
|
By default, new-style classes are constructed using \function{type()}.
|
|
|
|
A class definition is read into a separate namespace and the value
|
|
|
|
of class name is bound to the result of \code{type(name, bases, dict)}.
|
|
|
|
|
|
|
|
When the class definition is read, if \var{__metaclass__} is defined
|
|
|
|
then the callable assigned to it will be called instead of \function{type()}.
|
|
|
|
The allows classes or functions to be written which monitor or alter the class
|
|
|
|
creation process:
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item Modifying the class dictionary prior to the class being created.
|
|
|
|
\item Returning an instance of another class -- essentially performing
|
|
|
|
the role of a factory function.
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
\begin{datadesc}{__metaclass__}
|
|
|
|
This variable can be any callable accepting arguments for \code{name},
|
|
|
|
\code{bases}, and \code{dict}. Upon class creation, the callable is
|
|
|
|
used instead of the built-in \function{type()}.
|
|
|
|
\versionadded{2.2}
|
|
|
|
\end{datadesc}
|
|
|
|
|
|
|
|
The appropriate metaclass is determined by the following precedence rules:
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
|
|
|
\item If \code{dict['__metaclass__']} exists, it is used.
|
|
|
|
|
|
|
|
\item Otherwise, if there is at least one base class, its metaclass is used
|
|
|
|
(this looks for a \var{__class__} attribute first and if not found, uses its
|
|
|
|
type).
|
|
|
|
|
|
|
|
\item Otherwise, if a global variable named __metaclass__ exists, it is used.
|
|
|
|
|
|
|
|
\item Otherwise, the old-style, classic metaclass (types.ClassType) is used.
|
|
|
|
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
The potential uses for metaclasses are boundless. Some ideas that have
|
|
|
|
been explored including logging, interface checking, automatic delegation,
|
|
|
|
automatic property creation, proxies, frameworks, and automatic resource
|
|
|
|
locking/synchronization.
|
2003-06-25 15:29:36 -03:00
|
|
|
|
|
|
|
|
1998-07-28 16:34:22 -03:00
|
|
|
\subsection{Emulating callable objects\label{callable-types}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[object]{__call__}{self\optional{, args...}}
|
1998-07-23 14:12:46 -03:00
|
|
|
Called when the instance is ``called'' as a function; if this method
|
1998-08-28 17:03:12 -03:00
|
|
|
is defined, \code{\var{x}(arg1, arg2, ...)} is a shorthand for
|
|
|
|
\code{\var{x}.__call__(arg1, arg2, ...)}.
|
1998-07-23 14:12:46 -03:00
|
|
|
\indexii{call}{instance}
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
|
|
|
|
2001-10-01 13:32:13 -03:00
|
|
|
\subsection{Emulating container types\label{sequence-types}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2001-10-01 13:32:13 -03:00
|
|
|
The following methods can be defined to implement container
|
|
|
|
objects. Containers usually are sequences (such as lists or tuples)
|
|
|
|
or mappings (like dictionaries), but can represent other containers as
|
|
|
|
well. The first set of methods is used either to emulate a
|
1998-07-23 14:12:46 -03:00
|
|
|
sequence or to emulate a mapping; the difference is that for a
|
|
|
|
sequence, the allowable keys should be the integers \var{k} for which
|
|
|
|
\code{0 <= \var{k} < \var{N}} where \var{N} is the length of the
|
2000-08-17 19:37:32 -03:00
|
|
|
sequence, or slice objects, which define a range of items. (For backwards
|
|
|
|
compatibility, the method \method{__getslice__()} (see below) can also be
|
|
|
|
defined to handle simple, but not extended slices.) It is also recommended
|
2000-08-17 23:42:14 -03:00
|
|
|
that mappings provide the methods \method{keys()}, \method{values()},
|
2000-08-17 19:37:32 -03:00
|
|
|
\method{items()}, \method{has_key()}, \method{get()}, \method{clear()},
|
2003-01-19 09:08:18 -04:00
|
|
|
\method{setdefault()}, \method{iterkeys()}, \method{itervalues()},
|
2003-01-19 10:57:12 -04:00
|
|
|
\method{iteritems()}, \method{pop()}, \method{popitem()},
|
2000-08-17 19:37:32 -03:00
|
|
|
\method{copy()}, and \method{update()} behaving similar to those for
|
2003-01-19 09:08:18 -04:00
|
|
|
Python's standard dictionary objects. The \module{UserDict} module
|
|
|
|
provides a \class{DictMixin} class to help create those methods
|
|
|
|
from a base set of \method{__getitem__()}, \method{__setitem__()},
|
|
|
|
\method{__delitem__()}, and \method{keys()}.
|
|
|
|
Mutable sequences should provide
|
1998-07-23 14:12:46 -03:00
|
|
|
methods \method{append()}, \method{count()}, \method{index()},
|
2003-01-19 09:08:18 -04:00
|
|
|
\method{extend()},
|
1998-07-23 14:12:46 -03:00
|
|
|
\method{insert()}, \method{pop()}, \method{remove()}, \method{reverse()}
|
|
|
|
and \method{sort()}, like Python standard list objects. Finally,
|
|
|
|
sequence types should implement addition (meaning concatenation) and
|
|
|
|
multiplication (meaning repetition) by defining the methods
|
2000-08-24 17:06:04 -03:00
|
|
|
\method{__add__()}, \method{__radd__()}, \method{__iadd__()},
|
|
|
|
\method{__mul__()}, \method{__rmul__()} and \method{__imul__()} described
|
|
|
|
below; they should not define \method{__coerce__()} or other numerical
|
2001-04-20 13:50:40 -03:00
|
|
|
operators. It is recommended that both mappings and sequences
|
2001-09-18 14:58:20 -03:00
|
|
|
implement the \method{__contains__()} method to allow efficient use of
|
|
|
|
the \code{in} operator; for mappings, \code{in} should be equivalent
|
|
|
|
of \method{has_key()}; for sequences, it should search through the
|
2003-01-19 09:08:18 -04:00
|
|
|
values. It is further recommended that both mappings and sequences
|
|
|
|
implement the \method{__iter__()} method to allow efficient iteration
|
|
|
|
through the container; for mappings, \method{__iter__()} should be
|
|
|
|
the same as \method{iterkeys()}; for sequences, it should iterate
|
|
|
|
through the values.
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(mapping object method)}{
|
|
|
|
\ttindex{keys()}
|
|
|
|
\ttindex{values()}
|
|
|
|
\ttindex{items()}
|
2003-01-19 09:08:18 -04:00
|
|
|
\ttindex{iterkeys()}
|
|
|
|
\ttindex{itervalues()}
|
|
|
|
\ttindex{iteritems()}
|
1999-01-12 00:15:20 -04:00
|
|
|
\ttindex{has_key()}
|
|
|
|
\ttindex{get()}
|
2003-01-19 09:08:18 -04:00
|
|
|
\ttindex{setdefault()}
|
|
|
|
\ttindex{pop()}
|
|
|
|
\ttindex{popitem()}
|
1999-01-12 00:15:20 -04:00
|
|
|
\ttindex{clear()}
|
|
|
|
\ttindex{copy()}
|
2001-04-20 13:50:40 -03:00
|
|
|
\ttindex{update()}
|
|
|
|
\ttindex{__contains__()}}
|
1999-01-12 00:15:20 -04:00
|
|
|
\withsubitem{(sequence object method)}{
|
|
|
|
\ttindex{append()}
|
|
|
|
\ttindex{count()}
|
2003-01-19 09:08:18 -04:00
|
|
|
\ttindex{extend()}
|
1999-01-12 00:15:20 -04:00
|
|
|
\ttindex{index()}
|
|
|
|
\ttindex{insert()}
|
|
|
|
\ttindex{pop()}
|
|
|
|
\ttindex{remove()}
|
|
|
|
\ttindex{reverse()}
|
|
|
|
\ttindex{sort()}
|
|
|
|
\ttindex{__add__()}
|
|
|
|
\ttindex{__radd__()}
|
2000-08-24 17:06:04 -03:00
|
|
|
\ttindex{__iadd__()}
|
1999-01-12 00:15:20 -04:00
|
|
|
\ttindex{__mul__()}
|
2000-08-24 17:06:04 -03:00
|
|
|
\ttindex{__rmul__()}
|
2001-04-20 13:50:40 -03:00
|
|
|
\ttindex{__imul__()}
|
2003-01-19 09:08:18 -04:00
|
|
|
\ttindex{__contains__()}
|
|
|
|
\ttindex{__iter__()}}
|
1999-01-28 19:21:49 -04:00
|
|
|
\withsubitem{(numeric object method)}{\ttindex{__coerce__()}}
|
1998-11-25 13:58:50 -04:00
|
|
|
|
2001-10-01 13:32:13 -03:00
|
|
|
\begin{methoddesc}[container object]{__len__}{self}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement the built-in function
|
|
|
|
\function{len()}\bifuncindex{len}. Should return the length of the
|
|
|
|
object, an integer \code{>=} 0. Also, an object that doesn't define a
|
|
|
|
\method{__nonzero__()} method and whose \method{__len__()} method
|
|
|
|
returns zero is considered to be false in a Boolean context.
|
1998-11-25 13:58:50 -04:00
|
|
|
\withsubitem{(object method)}{\ttindex{__nonzero__()}}
|
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-10-01 13:32:13 -03:00
|
|
|
\begin{methoddesc}[container object]{__getitem__}{self, key}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement evaluation of \code{\var{self}[\var{key}]}.
|
2000-09-21 02:28:26 -03:00
|
|
|
For sequence types, the accepted keys should be integers and slice
|
|
|
|
objects.\obindex{slice} Note that
|
|
|
|
the special interpretation of negative indexes (if the class wishes to
|
1998-05-06 16:52:49 -03:00
|
|
|
emulate a sequence type) is up to the \method{__getitem__()} method.
|
2000-07-13 01:57:58 -03:00
|
|
|
If \var{key} is of an inappropriate type, \exception{TypeError} may be
|
|
|
|
raised; if of a value outside the set of indexes for the sequence
|
|
|
|
(after any special interpretation of negative values),
|
|
|
|
\exception{IndexError} should be raised.
|
2005-08-21 08:26:14 -03:00
|
|
|
For mapping types, if \var{key} is missing (not in the container),
|
|
|
|
\exception{KeyError} should be raised.
|
2001-10-20 01:24:09 -03:00
|
|
|
\note{\keyword{for} loops expect that an
|
2000-07-13 01:57:58 -03:00
|
|
|
\exception{IndexError} will be raised for illegal indexes to allow
|
2001-10-20 01:24:09 -03:00
|
|
|
proper detection of the end of the sequence.}
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-10-01 13:32:13 -03:00
|
|
|
\begin{methoddesc}[container object]{__setitem__}{self, key, value}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement assignment to \code{\var{self}[\var{key}]}. Same
|
1998-11-25 13:58:50 -04:00
|
|
|
note as for \method{__getitem__()}. This should only be implemented
|
|
|
|
for mappings if the objects support changes to the values for keys, or
|
|
|
|
if new keys can be added, or for sequences if elements can be
|
2000-07-13 01:57:58 -03:00
|
|
|
replaced. The same exceptions should be raised for improper
|
|
|
|
\var{key} values as for the \method{__getitem__()} method.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-10-01 13:32:13 -03:00
|
|
|
\begin{methoddesc}[container object]{__delitem__}{self, key}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement deletion of \code{\var{self}[\var{key}]}. Same
|
1998-11-25 13:58:50 -04:00
|
|
|
note as for \method{__getitem__()}. This should only be implemented
|
|
|
|
for mappings if the objects support removal of keys, or for sequences
|
2000-07-13 01:57:58 -03:00
|
|
|
if elements can be removed from the sequence. The same exceptions
|
|
|
|
should be raised for improper \var{key} values as for the
|
|
|
|
\method{__getitem__()} method.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-10-01 13:32:13 -03:00
|
|
|
\begin{methoddesc}[container object]{__iter__}{self}
|
|
|
|
This method is called when an iterator is required for a container.
|
|
|
|
This method should return a new iterator object that can iterate over
|
|
|
|
all the objects in the container. For mappings, it should iterate
|
|
|
|
over the keys of the container, and should also be made available as
|
|
|
|
the method \method{iterkeys()}.
|
|
|
|
|
|
|
|
Iterator objects also need to implement this method; they are required
|
|
|
|
to return themselves. For more information on iterator objects, see
|
|
|
|
``\ulink{Iterator Types}{../lib/typeiter.html}'' in the
|
|
|
|
\citetitle[../lib/lib.html]{Python Library Reference}.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
The membership test operators (\keyword{in} and \keyword{not in}) are
|
|
|
|
normally implemented as an iteration through a sequence. However,
|
|
|
|
container objects can supply the following special method with a more
|
|
|
|
efficient implementation, which also does not require the object be a
|
|
|
|
sequence.
|
|
|
|
|
|
|
|
\begin{methoddesc}[container object]{__contains__}{self, item}
|
|
|
|
Called to implement membership test operators. Should return true if
|
|
|
|
\var{item} is in \var{self}, false otherwise. For mapping objects,
|
|
|
|
this should consider the keys of the mapping rather than the values or
|
|
|
|
the key-item pairs.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-10-20 21:25:32 -03:00
|
|
|
\subsection{Additional methods for emulation of sequence types
|
1998-07-28 16:34:22 -03:00
|
|
|
\label{sequence-methods}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2003-01-19 09:08:18 -04:00
|
|
|
The following optional methods can be defined to further emulate sequence
|
|
|
|
objects. Immutable sequences methods should at most only define
|
|
|
|
\method{__getslice__()}; mutable sequences might define all three
|
2003-09-22 12:27:11 -03:00
|
|
|
methods.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[sequence object]{__getslice__}{self, i, j}
|
2000-08-17 23:42:14 -03:00
|
|
|
\deprecated{2.0}{Support slice objects as parameters to the
|
|
|
|
\method{__getitem__()} method.}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement evaluation of \code{\var{self}[\var{i}:\var{j}]}.
|
|
|
|
The returned object should be of the same type as \var{self}. Note
|
|
|
|
that missing \var{i} or \var{j} in the slice expression are replaced
|
2000-04-03 01:51:13 -03:00
|
|
|
by zero or \code{sys.maxint}, respectively. If negative indexes are
|
|
|
|
used in the slice, the length of the sequence is added to that index.
|
|
|
|
If the instance does not implement the \method{__len__()} method, an
|
|
|
|
\exception{AttributeError} is raised.
|
|
|
|
No guarantee is made that indexes adjusted this way are not still
|
|
|
|
negative. Indexes which are greater than the length of the sequence
|
|
|
|
are not modified.
|
2000-08-17 23:42:14 -03:00
|
|
|
If no \method{__getslice__()} is found, a slice
|
2000-08-17 19:37:32 -03:00
|
|
|
object is created instead, and passed to \method{__getitem__()} instead.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[sequence object]{__setslice__}{self, i, j, sequence}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement assignment to \code{\var{self}[\var{i}:\var{j}]}.
|
|
|
|
Same notes for \var{i} and \var{j} as for \method{__getslice__()}.
|
2000-08-17 19:37:32 -03:00
|
|
|
|
2003-01-19 09:08:18 -04:00
|
|
|
This method is deprecated. If no \method{__setslice__()} is found,
|
|
|
|
or for extended slicing of the form
|
|
|
|
\code{\var{self}[\var{i}:\var{j}:\var{k}]}, a
|
|
|
|
slice object is created, and passed to \method{__setitem__()},
|
|
|
|
instead of \method{__setslice__()} being called.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1998-11-25 13:58:50 -04:00
|
|
|
\begin{methoddesc}[sequence object]{__delslice__}{self, i, j}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement deletion of \code{\var{self}[\var{i}:\var{j}]}.
|
|
|
|
Same notes for \var{i} and \var{j} as for \method{__getslice__()}.
|
2003-01-19 09:08:18 -04:00
|
|
|
This method is deprecated. If no \method{__delslice__()} is found,
|
|
|
|
or for extended slicing of the form
|
|
|
|
\code{\var{self}[\var{i}:\var{j}:\var{k}]}, a
|
|
|
|
slice object is created, and passed to \method{__delitem__()},
|
|
|
|
instead of \method{__delslice__()} being called.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2001-04-13 12:54:41 -03:00
|
|
|
Notice that these methods are only invoked when a single slice with a
|
|
|
|
single colon is used, and the slice method is available. For slice
|
|
|
|
operations involving extended slice notation, or in absence of the
|
|
|
|
slice methods, \method{__getitem__()}, \method{__setitem__()} or
|
|
|
|
\method{__delitem__()} is called with a slice object as argument.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2000-09-21 19:27:16 -03:00
|
|
|
The following example demonstrate how to make your program or module
|
|
|
|
compatible with earlier versions of Python (assuming that methods
|
|
|
|
\method{__getitem__()}, \method{__setitem__()} and \method{__delitem__()}
|
|
|
|
support slice objects as arguments):
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
class MyClass:
|
|
|
|
...
|
|
|
|
def __getitem__(self, index):
|
|
|
|
...
|
|
|
|
def __setitem__(self, index, value):
|
|
|
|
...
|
|
|
|
def __delitem__(self, index):
|
|
|
|
...
|
|
|
|
|
|
|
|
if sys.version_info < (2, 0):
|
|
|
|
# They won't be defined if version is at least 2.0 final
|
|
|
|
|
|
|
|
def __getslice__(self, i, j):
|
|
|
|
return self[max(0, i):max(0, j):]
|
|
|
|
def __setslice__(self, i, j, seq):
|
|
|
|
self[max(0, i):max(0, j):] = seq
|
|
|
|
def __delslice__(self, i, j):
|
|
|
|
del self[max(0, i):max(0, j):]
|
|
|
|
...
|
|
|
|
\end{verbatim}
|
|
|
|
|
2003-01-19 09:08:18 -04:00
|
|
|
Note the calls to \function{max()}; these are necessary because of
|
|
|
|
the handling of negative indices before the
|
2000-09-21 19:27:16 -03:00
|
|
|
\method{__*slice__()} methods are called. When negative indexes are
|
|
|
|
used, the \method{__*item__()} methods receive them as provided, but
|
|
|
|
the \method{__*slice__()} methods get a ``cooked'' form of the index
|
|
|
|
values. For each negative index value, the length of the sequence is
|
|
|
|
added to the index before calling the method (which may still result
|
|
|
|
in a negative index); this is the customary handling of negative
|
|
|
|
indexes by the built-in sequence types, and the \method{__*item__()}
|
|
|
|
methods are expected to do this as well. However, since they should
|
|
|
|
already be doing that, negative indexes cannot be passed in; they must
|
2003-08-25 01:39:55 -03:00
|
|
|
be constrained to the bounds of the sequence before being passed to
|
2000-09-21 19:27:16 -03:00
|
|
|
the \method{__*item__()} methods.
|
|
|
|
Calling \code{max(0, i)} conveniently returns the proper value.
|
|
|
|
|
1999-02-12 14:14:57 -04:00
|
|
|
|
1998-07-28 16:34:22 -03:00
|
|
|
\subsection{Emulating numeric types\label{numeric-types}}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
|
|
|
The following methods can be defined to emulate numeric objects.
|
|
|
|
Methods corresponding to operations that are not supported by the
|
|
|
|
particular kind of number implemented (e.g., bitwise operations for
|
|
|
|
non-integral numbers) should be left undefined.
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1999-05-10 10:43:22 -03:00
|
|
|
\begin{methoddesc}[numeric object]{__add__}{self, other}
|
|
|
|
\methodline[numeric object]{__sub__}{self, other}
|
|
|
|
\methodline[numeric object]{__mul__}{self, other}
|
2001-08-14 17:28:08 -03:00
|
|
|
\methodline[numeric object]{__floordiv__}{self, other}
|
1999-05-10 10:43:22 -03:00
|
|
|
\methodline[numeric object]{__mod__}{self, other}
|
|
|
|
\methodline[numeric object]{__divmod__}{self, other}
|
|
|
|
\methodline[numeric object]{__pow__}{self, other\optional{, modulo}}
|
|
|
|
\methodline[numeric object]{__lshift__}{self, other}
|
|
|
|
\methodline[numeric object]{__rshift__}{self, other}
|
|
|
|
\methodline[numeric object]{__and__}{self, other}
|
|
|
|
\methodline[numeric object]{__xor__}{self, other}
|
|
|
|
\methodline[numeric object]{__or__}{self, other}
|
2001-08-14 17:28:08 -03:00
|
|
|
These methods are
|
1998-07-23 14:12:46 -03:00
|
|
|
called to implement the binary arithmetic operations (\code{+},
|
2001-08-14 17:28:08 -03:00
|
|
|
\code{-}, \code{*}, \code{//}, \code{\%},
|
1998-08-28 17:03:12 -03:00
|
|
|
\function{divmod()}\bifuncindex{divmod},
|
2006-05-02 23:04:40 -03:00
|
|
|
\function{pow()}\bifuncindex{pow}, \code{**}, \code{<<},
|
|
|
|
\code{>>}, \code{\&}, \code{\^}, \code{|}). For instance, to
|
2001-04-13 12:54:41 -03:00
|
|
|
evaluate the expression \var{x}\code{+}\var{y}, where \var{x} is an
|
|
|
|
instance of a class that has an \method{__add__()} method,
|
2001-08-14 17:28:08 -03:00
|
|
|
\code{\var{x}.__add__(\var{y})} is called. The \method{__divmod__()}
|
|
|
|
method should be the equivalent to using \method{__floordiv__()} and
|
|
|
|
\method{__mod__()}; it should not be related to \method{__truediv__()}
|
|
|
|
(described below). Note that
|
1998-08-28 17:03:12 -03:00
|
|
|
\method{__pow__()} should be defined to accept an optional third
|
|
|
|
argument if the ternary version of the built-in
|
|
|
|
\function{pow()}\bifuncindex{pow} function is to be supported.
|
2006-07-30 07:53:32 -03:00
|
|
|
|
|
|
|
If one of those methods does not support the operation with the
|
|
|
|
supplied arguments, it should return \code{NotImplemented}.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2001-08-14 17:28:08 -03:00
|
|
|
\begin{methoddesc}[numeric object]{__div__}{self, other}
|
|
|
|
\methodline[numeric object]{__truediv__}{self, other}
|
|
|
|
The division operator (\code{/}) is implemented by these methods. The
|
|
|
|
\method{__truediv__()} method is used when \code{__future__.division}
|
|
|
|
is in effect, otherwise \method{__div__()} is used. If only one of
|
|
|
|
these two methods is defined, the object will not support division in
|
|
|
|
the alternate context; \exception{TypeError} will be raised instead.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
1999-05-10 10:43:22 -03:00
|
|
|
\begin{methoddesc}[numeric object]{__radd__}{self, other}
|
|
|
|
\methodline[numeric object]{__rsub__}{self, other}
|
|
|
|
\methodline[numeric object]{__rmul__}{self, other}
|
|
|
|
\methodline[numeric object]{__rdiv__}{self, other}
|
2002-06-20 03:12:37 -03:00
|
|
|
\methodline[numeric object]{__rtruediv__}{self, other}
|
|
|
|
\methodline[numeric object]{__rfloordiv__}{self, other}
|
1999-05-10 10:43:22 -03:00
|
|
|
\methodline[numeric object]{__rmod__}{self, other}
|
|
|
|
\methodline[numeric object]{__rdivmod__}{self, other}
|
|
|
|
\methodline[numeric object]{__rpow__}{self, other}
|
|
|
|
\methodline[numeric object]{__rlshift__}{self, other}
|
|
|
|
\methodline[numeric object]{__rrshift__}{self, other}
|
|
|
|
\methodline[numeric object]{__rand__}{self, other}
|
|
|
|
\methodline[numeric object]{__rxor__}{self, other}
|
|
|
|
\methodline[numeric object]{__ror__}{self, other}
|
2001-08-14 17:28:08 -03:00
|
|
|
These methods are
|
1998-07-23 14:12:46 -03:00
|
|
|
called to implement the binary arithmetic operations (\code{+},
|
1998-08-28 17:03:12 -03:00
|
|
|
\code{-}, \code{*}, \code{/}, \code{\%},
|
|
|
|
\function{divmod()}\bifuncindex{divmod},
|
2006-05-02 23:04:40 -03:00
|
|
|
\function{pow()}\bifuncindex{pow}, \code{**}, \code{<<},
|
|
|
|
\code{>>}, \code{\&}, \code{\^}, \code{|}) with reflected
|
2001-04-13 12:54:41 -03:00
|
|
|
(swapped) operands. These functions are only called if the left
|
2006-06-14 05:31:39 -03:00
|
|
|
operand does not support the corresponding operation and the
|
|
|
|
operands are of different types.\footnote{
|
|
|
|
For operands of the same type, it is assumed that if the
|
|
|
|
non-reflected method (such as \method{__add__()}) fails the
|
|
|
|
operation is not supported, which is why the reflected method
|
|
|
|
is not called.}
|
|
|
|
For instance, to evaluate the expression \var{x}\code{-}\var{y},
|
|
|
|
where \var{y} is an instance of a class that has an
|
|
|
|
\method{__rsub__()} method, \code{\var{y}.__rsub__(\var{x})}
|
|
|
|
is called if \code{\var{x}.__sub__(\var{y})} returns
|
|
|
|
\var{NotImplemented}.
|
|
|
|
|
|
|
|
Note that ternary
|
2001-04-13 12:54:41 -03:00
|
|
|
\function{pow()}\bifuncindex{pow} will not try calling
|
|
|
|
\method{__rpow__()} (the coercion rules would become too
|
1998-07-23 14:12:46 -03:00
|
|
|
complicated).
|
2006-06-14 05:31:39 -03:00
|
|
|
|
|
|
|
\note{If the right operand's type is a subclass of the left operand's
|
|
|
|
type and that subclass provides the reflected method for the
|
2006-07-30 17:18:51 -03:00
|
|
|
operation, this method will be called before the left operand's
|
2006-06-14 05:31:39 -03:00
|
|
|
non-reflected method. This behavior allows subclasses to
|
|
|
|
override their ancestors' operations.}
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2000-12-11 19:11:51 -04:00
|
|
|
\begin{methoddesc}[numeric object]{__iadd__}{self, other}
|
|
|
|
\methodline[numeric object]{__isub__}{self, other}
|
|
|
|
\methodline[numeric object]{__imul__}{self, other}
|
|
|
|
\methodline[numeric object]{__idiv__}{self, other}
|
2002-06-20 03:12:37 -03:00
|
|
|
\methodline[numeric object]{__itruediv__}{self, other}
|
|
|
|
\methodline[numeric object]{__ifloordiv__}{self, other}
|
|
|
|
\methodline[numeric object]{__imod__}{self, other}
|
2000-12-11 19:11:51 -04:00
|
|
|
\methodline[numeric object]{__ipow__}{self, other\optional{, modulo}}
|
|
|
|
\methodline[numeric object]{__ilshift__}{self, other}
|
|
|
|
\methodline[numeric object]{__irshift__}{self, other}
|
|
|
|
\methodline[numeric object]{__iand__}{self, other}
|
|
|
|
\methodline[numeric object]{__ixor__}{self, other}
|
|
|
|
\methodline[numeric object]{__ior__}{self, other}
|
2001-04-13 12:54:41 -03:00
|
|
|
These methods are called to implement the augmented arithmetic
|
|
|
|
operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
|
2006-05-02 23:04:40 -03:00
|
|
|
\code{**=}, \code{<<=}, \code{>>=}, \code{\&=},
|
2003-07-23 12:18:03 -03:00
|
|
|
\code{\textasciicircum=}, \code{|=}). These methods should attempt to do the
|
2001-04-13 12:54:41 -03:00
|
|
|
operation in-place (modifying \var{self}) and return the result (which
|
|
|
|
could be, but does not have to be, \var{self}). If a specific method
|
|
|
|
is not defined, the augmented operation falls back to the normal
|
|
|
|
methods. For instance, to evaluate the expression
|
|
|
|
\var{x}\code{+=}\var{y}, where \var{x} is an instance of a class that
|
|
|
|
has an \method{__iadd__()} method, \code{\var{x}.__iadd__(\var{y})} is
|
|
|
|
called. If \var{x} is an instance of a class that does not define a
|
2005-09-07 01:57:56 -03:00
|
|
|
\method{__iadd__()} method, \code{\var{x}.__add__(\var{y})} and
|
2001-04-13 12:54:41 -03:00
|
|
|
\code{\var{y}.__radd__(\var{x})} are considered, as with the
|
|
|
|
evaluation of \var{x}\code{+}\var{y}.
|
2000-12-11 19:11:51 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
1999-05-10 10:43:22 -03:00
|
|
|
\begin{methoddesc}[numeric object]{__neg__}{self}
|
|
|
|
\methodline[numeric object]{__pos__}{self}
|
|
|
|
\methodline[numeric object]{__abs__}{self}
|
|
|
|
\methodline[numeric object]{__invert__}{self}
|
2001-04-13 12:54:41 -03:00
|
|
|
Called to implement the unary arithmetic operations (\code{-},
|
|
|
|
\code{+}, \function{abs()}\bifuncindex{abs} and \code{\~{}}).
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-08-28 17:03:12 -03:00
|
|
|
|
1999-05-10 10:43:22 -03:00
|
|
|
\begin{methoddesc}[numeric object]{__complex__}{self}
|
|
|
|
\methodline[numeric object]{__int__}{self}
|
|
|
|
\methodline[numeric object]{__long__}{self}
|
|
|
|
\methodline[numeric object]{__float__}{self}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement the built-in functions
|
1999-02-12 14:14:57 -04:00
|
|
|
\function{complex()}\bifuncindex{complex},
|
|
|
|
\function{int()}\bifuncindex{int}, \function{long()}\bifuncindex{long},
|
1998-08-28 17:03:12 -03:00
|
|
|
and \function{float()}\bifuncindex{float}. Should return a value of
|
|
|
|
the appropriate type.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
1999-05-10 10:43:22 -03:00
|
|
|
\begin{methoddesc}[numeric object]{__oct__}{self}
|
|
|
|
\methodline[numeric object]{__hex__}{self}
|
1998-08-28 17:03:12 -03:00
|
|
|
Called to implement the built-in functions
|
|
|
|
\function{oct()}\bifuncindex{oct} and
|
|
|
|
\function{hex()}\bifuncindex{hex}. Should return a string value.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-05-06 16:52:49 -03:00
|
|
|
|
2006-03-07 14:50:55 -04:00
|
|
|
\begin{methoddesc}[numeric object]{__index__}{self}
|
2006-05-27 13:32:44 -03:00
|
|
|
Called to implement \function{operator.index()}. Also called whenever
|
|
|
|
Python needs an integer object (such as in slicing). Must return an
|
|
|
|
integer (int or long).
|
2006-03-07 14:50:55 -04:00
|
|
|
\versionadded{2.5}
|
|
|
|
\end{methoddesc}
|
|
|
|
|
1999-05-10 10:43:22 -03:00
|
|
|
\begin{methoddesc}[numeric object]{__coerce__}{self, other}
|
1998-07-23 14:12:46 -03:00
|
|
|
Called to implement ``mixed-mode'' numeric arithmetic. Should either
|
1998-08-28 17:03:12 -03:00
|
|
|
return a 2-tuple containing \var{self} and \var{other} converted to
|
1999-05-10 10:43:22 -03:00
|
|
|
a common numeric type, or \code{None} if conversion is impossible. When
|
1998-07-23 14:12:46 -03:00
|
|
|
the common type would be the type of \code{other}, it is sufficient to
|
|
|
|
return \code{None}, since the interpreter will also ask the other
|
|
|
|
object to attempt a coercion (but sometimes, if the implementation of
|
|
|
|
the other type cannot be changed, it is useful to do the conversion to
|
2002-06-03 16:06:41 -03:00
|
|
|
the other type here). A return value of \code{NotImplemented} is
|
|
|
|
equivalent to returning \code{None}.
|
1998-11-25 13:58:50 -04:00
|
|
|
\end{methoddesc}
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\subsection{Coercion rules\label{coercion-rules}}
|
|
|
|
|
|
|
|
This section used to document the rules for coercion. As the language
|
|
|
|
has evolved, the coercion rules have become hard to document
|
|
|
|
precisely; documenting what one version of one particular
|
|
|
|
implementation does is undesirable. Instead, here are some informal
|
|
|
|
guidelines regarding coercion. In Python 3.0, coercion will not be
|
|
|
|
supported.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
|
|
|
|
|
|
|
If the left operand of a \% operator is a string or Unicode object, no
|
|
|
|
coercion takes place and the string formatting operation is invoked
|
|
|
|
instead.
|
|
|
|
|
|
|
|
\item
|
|
|
|
|
|
|
|
It is no longer recommended to define a coercion operation.
|
|
|
|
Mixed-mode operations on types that don't define coercion pass the
|
|
|
|
original arguments to the operation.
|
|
|
|
|
|
|
|
\item
|
|
|
|
|
2002-06-04 13:25:57 -03:00
|
|
|
New-style classes (those derived from \class{object}) never invoke the
|
|
|
|
\method{__coerce__()} method in response to a binary operator; the only
|
|
|
|
time \method{__coerce__()} is invoked is when the built-in function
|
|
|
|
\function{coerce()} is called.
|
2002-06-03 16:06:41 -03:00
|
|
|
|
|
|
|
\item
|
|
|
|
|
|
|
|
For most intents and purposes, an operator that returns
|
|
|
|
\code{NotImplemented} is treated the same as one that is not
|
|
|
|
implemented at all.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
Below, \method{__op__()} and \method{__rop__()} are used to signify
|
|
|
|
the generic method names corresponding to an operator;
|
2005-09-07 01:57:56 -03:00
|
|
|
\method{__iop__()} is used for the corresponding in-place operator. For
|
2002-06-03 16:06:41 -03:00
|
|
|
example, for the operator `\code{+}', \method{__add__()} and
|
|
|
|
\method{__radd__()} are used for the left and right variant of the
|
2005-09-07 01:57:56 -03:00
|
|
|
binary operator, and \method{__iadd__()} for the in-place variant.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
For objects \var{x} and \var{y}, first \code{\var{x}.__op__(\var{y})}
|
|
|
|
is tried. If this is not implemented or returns \code{NotImplemented},
|
|
|
|
\code{\var{y}.__rop__(\var{x})} is tried. If this is also not
|
2002-06-04 13:25:57 -03:00
|
|
|
implemented or returns \code{NotImplemented}, a \exception{TypeError}
|
2002-06-03 16:06:41 -03:00
|
|
|
exception is raised. But see the following exception:
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
Exception to the previous item: if the left operand is an instance of
|
2006-04-01 03:23:08 -04:00
|
|
|
a built-in type or a new-style class, and the right operand is an instance
|
|
|
|
of a proper subclass of that type or class and overrides the base's
|
|
|
|
\method{__rop__()} method, the right operand's \method{__rop__()} method
|
|
|
|
is tried \emph{before} the left operand's \method{__op__()} method.
|
|
|
|
|
|
|
|
This is done so that a subclass can completely override binary operators.
|
|
|
|
Otherwise, the left operand's \method{__op__()} method would always
|
|
|
|
accept the right operand: when an instance of a given class is expected,
|
|
|
|
an instance of a subclass of that class is always acceptable.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
When either operand type defines a coercion, this coercion is called
|
2002-06-04 13:25:57 -03:00
|
|
|
before that type's \method{__op__()} or \method{__rop__()} method is
|
|
|
|
called, but no sooner. If the coercion returns an object of a
|
|
|
|
different type for the operand whose coercion is invoked, part of the
|
|
|
|
process is redone using the new object.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
When an in-place operator (like `\code{+=}') is used, if the left
|
2002-06-04 13:25:57 -03:00
|
|
|
operand implements \method{__iop__()}, it is invoked without any
|
|
|
|
coercion. When the operation falls back to \method{__op__()} and/or
|
|
|
|
\method{__rop__()}, the normal coercion rules apply.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
In \var{x}\code{+}\var{y}, if \var{x} is a sequence that implements
|
|
|
|
sequence concatenation, sequence concatenation is invoked.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
In \var{x}\code{*}\var{y}, if one operator is a sequence that
|
|
|
|
implements sequence repetition, and the other is an integer
|
2002-06-04 13:25:57 -03:00
|
|
|
(\class{int} or \class{long}), sequence repetition is invoked.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-04 13:25:57 -03:00
|
|
|
Rich comparisons (implemented by methods \method{__eq__()} and so on)
|
2002-06-03 16:06:41 -03:00
|
|
|
never use coercion. Three-way comparison (implemented by
|
2002-06-04 13:25:57 -03:00
|
|
|
\method{__cmp__()}) does use coercion under the same conditions as
|
2002-06-03 16:06:41 -03:00
|
|
|
other binary operations use it.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-03 16:06:41 -03:00
|
|
|
\item
|
1998-07-23 14:12:46 -03:00
|
|
|
|
2002-06-04 13:25:57 -03:00
|
|
|
In the current implementation, the built-in numeric types \class{int},
|
|
|
|
\class{long} and \class{float} do not use coercion; the type
|
|
|
|
\class{complex} however does use it. The difference can become
|
2002-06-03 16:06:41 -03:00
|
|
|
apparent when subclassing these types. Over time, the type
|
2002-06-04 13:25:57 -03:00
|
|
|
\class{complex} may be fixed to avoid coercion. All these types
|
|
|
|
implement a \method{__coerce__()} method, for use by the built-in
|
|
|
|
\function{coerce()} function.
|
1998-07-23 14:12:46 -03:00
|
|
|
|
|
|
|
\end{itemize}
|
2006-03-27 15:59:34 -04:00
|
|
|
|
2006-05-03 10:02:47 -03:00
|
|
|
\subsection{With Statement Context Managers\label{context-managers}}
|
2006-03-27 15:59:34 -04:00
|
|
|
|
2006-03-28 01:51:02 -04:00
|
|
|
\versionadded{2.5}
|
|
|
|
|
2006-04-25 07:56:51 -03:00
|
|
|
A \dfn{context manager} is an object that defines the runtime
|
2006-04-24 01:17:02 -03:00
|
|
|
context to be established when executing a \keyword{with}
|
2006-05-03 10:02:47 -03:00
|
|
|
statement. The context manager handles the entry into,
|
2006-04-25 07:56:51 -03:00
|
|
|
and the exit from, the desired runtime context for the execution
|
|
|
|
of the block of code. Context managers are normally invoked using
|
|
|
|
the \keyword{with} statement (described in section~\ref{with}), but
|
|
|
|
can also be used by directly invoking their methods.
|
2006-04-23 12:39:16 -03:00
|
|
|
|
2006-03-27 15:59:34 -04:00
|
|
|
\stindex{with}
|
|
|
|
\index{context manager}
|
|
|
|
|
2006-05-03 10:02:47 -03:00
|
|
|
Typical uses of context managers include saving and
|
2006-04-23 12:39:16 -03:00
|
|
|
restoring various kinds of global state, locking and unlocking
|
|
|
|
resources, closing opened files, etc.
|
2006-03-27 15:59:34 -04:00
|
|
|
|
2006-05-03 10:02:47 -03:00
|
|
|
For more information on context managers, see
|
|
|
|
``\ulink{Context Types}{../lib/typecontextmanager.html}'' in the
|
2006-04-23 12:39:16 -03:00
|
|
|
\citetitle[../lib/lib.html]{Python Library Reference}.
|
|
|
|
|
2006-05-03 10:02:47 -03:00
|
|
|
\begin{methoddesc}[context manager]{__enter__}{self}
|
2006-04-25 07:56:51 -03:00
|
|
|
Enter the runtime context related to this object. The \keyword{with}
|
|
|
|
statement will bind this method's return value to the target(s)
|
|
|
|
specified in the \keyword{as} clause of the statement, if any.
|
2006-03-27 15:59:34 -04:00
|
|
|
\end{methoddesc}
|
|
|
|
|
2006-04-23 12:39:16 -03:00
|
|
|
\begin{methoddesc}[context manager]{__exit__}
|
|
|
|
{self, exc_type, exc_value, traceback}
|
2006-04-25 07:56:51 -03:00
|
|
|
Exit the runtime context related to this object. The parameters
|
|
|
|
describe the exception that caused the context to be exited. If
|
|
|
|
the context was exited without an exception, all three arguments
|
|
|
|
will be \constant{None}.
|
2006-03-27 15:59:34 -04:00
|
|
|
|
|
|
|
If an exception is supplied, and the method wishes to suppress the
|
|
|
|
exception (i.e., prevent it from being propagated), it should return a
|
|
|
|
true value. Otherwise, the exception will be processed normally upon
|
|
|
|
exit from this method.
|
|
|
|
|
|
|
|
Note that \method{__exit__} methods should not reraise the passed-in
|
|
|
|
exception; this is the caller's responsibility.
|
|
|
|
\end{methoddesc}
|
|
|
|
|
|
|
|
\begin{seealso}
|
|
|
|
\seepep{0343}{The "with" statement}
|
|
|
|
{The specification, background, and examples for the
|
|
|
|
Python \keyword{with} statement.}
|
|
|
|
\end{seealso}
|
|
|
|
|