blob: 2056a6c78deea15433d3df0dadad93ee01b84b85 [file] [log] [blame]
Fred Drake61c77281998-07-28 19:34:22 +00001\chapter{Data model\label{datamodel}}
Fred Drakef6669171998-05-06 19:52:49 +00002
Fred Drake2829f1c2001-06-23 05:27:20 +00003
Fred Drake61c77281998-07-28 19:34:22 +00004\section{Objects, values and types\label{objects}}
Fred Drakef6669171998-05-06 19:52:49 +00005
6\dfn{Objects} are Python's abstraction for data. All data in a Python
7program is represented by objects or by relations between objects.
8(In a sense, and in conformance to Von Neumann's model of a
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00009``stored program computer,'' code is also represented by objects.)
Fred Drakef6669171998-05-06 19:52:49 +000010\index{object}
11\index{data}
12
13Every object has an identity, a type and a value. An object's
14\emph{identity} never changes once it has been created; you may think
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000015of it as the object's address in memory. The `\code{is}' operator
Fred Drake82385871998-10-01 20:40:43 +000016compares the identity of two objects; the
17\function{id()}\bifuncindex{id} function returns an integer
18representing its identity (currently implemented as its address).
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000019An object's \dfn{type} is
Fred Drakef6669171998-05-06 19:52:49 +000020also unchangeable. It determines the operations that an object
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000021supports (e.g., ``does it have a length?'') and also defines the
Fred Drake82385871998-10-01 20:40:43 +000022possible values for objects of that type. The
23\function{type()}\bifuncindex{type} function returns an object's type
24(which is an object itself). The \emph{value} of some
Fred Drakef6669171998-05-06 19:52:49 +000025objects can change. Objects whose value can change are said to be
26\emph{mutable}; objects whose value is unchangeable once they are
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000027created are called \emph{immutable}.
Guido van Rossum264bd591999-02-23 16:40:55 +000028(The value of an immutable container object that contains a reference
29to a mutable object can change when the latter's value is changed;
30however the container is still considered immutable, because the
31collection of objects it contains cannot be changed. So, immutability
32is not strictly the same as having an unchangeable value, it is more
33subtle.)
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000034An object's mutability is determined by its type; for instance,
35numbers, strings and tuples are immutable, while dictionaries and
36lists are mutable.
Fred Drakef6669171998-05-06 19:52:49 +000037\index{identity of an object}
38\index{value of an object}
39\index{type of an object}
40\index{mutable object}
41\index{immutable object}
42
43Objects are never explicitly destroyed; however, when they become
44unreachable they may be garbage-collected. An implementation is
Barry Warsaw92a6ed91998-08-07 16:33:51 +000045allowed to postpone garbage collection or omit it altogether --- it is
46a matter of implementation quality how garbage collection is
Fred Drakef6669171998-05-06 19:52:49 +000047implemented, as long as no objects are collected that are still
48reachable. (Implementation note: the current implementation uses a
Fred Drakec8e82812001-01-22 17:46:18 +000049reference-counting scheme with (optional) delayed detection of
50cyclicly linked garbage, which collects most objects as soon as they
51become unreachable, but is not guaranteed to collect garbage
52containing circular references. See the
53\citetitle[../lib/module-gc.html]{Python Library Reference} for
54information on controlling the collection of cyclic garbage.)
Fred Drakef6669171998-05-06 19:52:49 +000055\index{garbage collection}
56\index{reference counting}
57\index{unreachable object}
58
59Note that the use of the implementation's tracing or debugging
60facilities may keep objects alive that would normally be collectable.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000061Also note that catching an exception with a
Fred Drake4856d011999-01-12 04:15:20 +000062`\keyword{try}...\keyword{except}' statement may keep objects alive.
Fred Drakef6669171998-05-06 19:52:49 +000063
64Some objects contain references to ``external'' resources such as open
65files or windows. It is understood that these resources are freed
66when the object is garbage-collected, but since garbage collection is
67not guaranteed to happen, such objects also provide an explicit way to
68release the external resource, usually a \method{close()} method.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000069Programs are strongly recommended to explicitly close such
Fred Drake4856d011999-01-12 04:15:20 +000070objects. The `\keyword{try}...\keyword{finally}' statement provides
71a convenient way to do this.
Fred Drakef6669171998-05-06 19:52:49 +000072
73Some objects contain references to other objects; these are called
74\emph{containers}. Examples of containers are tuples, lists and
75dictionaries. The references are part of a container's value. In
76most cases, when we talk about the value of a container, we imply the
77values, not the identities of the contained objects; however, when we
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000078talk about the mutability of a container, only the identities of
79the immediately contained objects are implied. So, if an immutable
80container (like a tuple)
81contains a reference to a mutable object, its value changes
82if that mutable object is changed.
Fred Drakef6669171998-05-06 19:52:49 +000083\index{container}
84
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000085Types affect almost all aspects of object behavior. Even the importance
Fred Drakef6669171998-05-06 19:52:49 +000086of object identity is affected in some sense: for immutable types,
87operations that compute new values may actually return a reference to
88any existing object with the same type and value, while for mutable
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000089objects this is not allowed. E.g., after
Fred Drake82385871998-10-01 20:40:43 +000090\samp{a = 1; b = 1},
Fred Drakef6669171998-05-06 19:52:49 +000091\code{a} and \code{b} may or may not refer to the same object with the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000092value one, depending on the implementation, but after
Fred Drake82385871998-10-01 20:40:43 +000093\samp{c = []; d = []}, \code{c} and \code{d}
Fred Drakef6669171998-05-06 19:52:49 +000094are guaranteed to refer to two different, unique, newly created empty
95lists.
Fred Drake82385871998-10-01 20:40:43 +000096(Note that \samp{c = d = []} assigns the same object to both
Guido van Rossum83b2f8a1998-07-23 17:12:46 +000097\code{c} and \code{d}.)
Fred Drakef6669171998-05-06 19:52:49 +000098
Fred Drake2829f1c2001-06-23 05:27:20 +000099
Fred Drake61c77281998-07-28 19:34:22 +0000100\section{The standard type hierarchy\label{types}}
Fred Drakef6669171998-05-06 19:52:49 +0000101
102Below is a list of the types that are built into Python. Extension
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000103modules written in \C{} can define additional types. Future versions of
104Python may add types to the type hierarchy (e.g., rational
Fred Drakef6669171998-05-06 19:52:49 +0000105numbers, efficiently stored arrays of integers, etc.).
106\index{type}
107\indexii{data}{type}
108\indexii{type}{hierarchy}
109\indexii{extension}{module}
110\indexii{C}{language}
111
112Some of the type descriptions below contain a paragraph listing
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000113`special attributes.' These are attributes that provide access to the
Fred Drakef6669171998-05-06 19:52:49 +0000114implementation and are not intended for general use. Their definition
Fred Drake35705512001-12-03 17:32:27 +0000115may change in the future.
Fred Drakef6669171998-05-06 19:52:49 +0000116\index{attribute}
117\indexii{special}{attribute}
118\indexiii{generic}{special}{attribute}
Fred Drakef6669171998-05-06 19:52:49 +0000119
120\begin{description}
121
122\item[None]
123This type has a single value. There is a single object with this value.
124This object is accessed through the built-in name \code{None}.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000125It is used to signify the absence of a value in many situations, e.g.,
126it is returned from functions that don't explicitly return anything.
127Its truth value is false.
Fred Drakef6669171998-05-06 19:52:49 +0000128\ttindex{None}
Fred Drake78eebfd1998-11-25 19:09:24 +0000129\obindex{None@{\texttt{None}}}
Fred Drakef6669171998-05-06 19:52:49 +0000130
Neil Schemenauer48c2eb92001-01-04 01:25:50 +0000131\item[NotImplemented]
132This type has a single value. There is a single object with this value.
133This object is accessed through the built-in name \code{NotImplemented}.
Guido van Rossumab782dd2001-01-18 15:17:06 +0000134Numeric methods and rich comparison methods may return this value if
135they do not implement the operation for the operands provided. (The
136interpreter will then try the reflected operation, or some other
137fallback, depending on the operator.) Its truth value is true.
Neil Schemenauer48c2eb92001-01-04 01:25:50 +0000138\ttindex{NotImplemented}
139\obindex{NotImplemented@{\texttt{NotImplemented}}}
140
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000141\item[Ellipsis]
142This type has a single value. There is a single object with this value.
143This object is accessed through the built-in name \code{Ellipsis}.
Fred Drake82385871998-10-01 20:40:43 +0000144It is used to indicate the presence of the \samp{...} syntax in a
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000145slice. Its truth value is true.
146\ttindex{Ellipsis}
Fred Drake78eebfd1998-11-25 19:09:24 +0000147\obindex{Ellipsis@{\texttt{Ellipsis}}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000148
Fred Drakef6669171998-05-06 19:52:49 +0000149\item[Numbers]
150These are created by numeric literals and returned as results by
151arithmetic operators and arithmetic built-in functions. Numeric
152objects are immutable; once created their value never changes. Python
153numbers are of course strongly related to mathematical numbers, but
154subject to the limitations of numerical representation in computers.
Fred Drakef6669171998-05-06 19:52:49 +0000155\obindex{numeric}
156
Fred Drakeb3384d32001-05-14 16:04:22 +0000157Python distinguishes between integers, floating point numbers, and
158complex numbers:
Fred Drakef6669171998-05-06 19:52:49 +0000159
160\begin{description}
161\item[Integers]
162These represent elements from the mathematical set of whole numbers.
163\obindex{integer}
164
Guido van Rossum77f6a652002-04-03 22:41:51 +0000165There are three types of integers:
Fred Drakef6669171998-05-06 19:52:49 +0000166
167\begin{description}
168
169\item[Plain integers]
170These represent numbers in the range -2147483648 through 2147483647.
171(The range may be larger on machines with a larger natural word
172size, but not smaller.)
Fred Drakee15956b2000-04-03 04:51:13 +0000173When the result of an operation would fall outside this range, the
Fred Drakef6669171998-05-06 19:52:49 +0000174exception \exception{OverflowError} is raised.
175For the purpose of shift and mask operations, integers are assumed to
176have a binary, 2's complement notation using 32 or more bits, and
177hiding no bits from the user (i.e., all 4294967296 different bit
178patterns correspond to different values).
179\obindex{plain integer}
180\withsubitem{(built-in exception)}{\ttindex{OverflowError}}
181
182\item[Long integers]
183These represent numbers in an unlimited range, subject to available
184(virtual) memory only. For the purpose of shift and mask operations,
185a binary representation is assumed, and negative numbers are
186represented in a variant of 2's complement which gives the illusion of
187an infinite string of sign bits extending to the left.
188\obindex{long integer}
189
Guido van Rossum77f6a652002-04-03 22:41:51 +0000190\item[Booleans]
191These represent the truth values False and True. The two objects
192representing the values False and True are the only Boolean objects.
193The Boolean type is a subtype of plain integers, and Boolean values
194behave like the values 0 and 1, respectively, in almost all contexts,
195the exception being that when converted to a string, the strings
196\code{"False"} or \code{"True"} are returned, respectively.
197\obindex{Boolean}
198\ttindex{False}
199\ttindex{True}
200
Fred Drakef6669171998-05-06 19:52:49 +0000201\end{description} % Integers
202
203The rules for integer representation are intended to give the most
204meaningful interpretation of shift and mask operations involving
205negative integers and the least surprises when switching between the
206plain and long integer domains. For any operation except left shift,
207if it yields a result in the plain integer domain without causing
208overflow, it will yield the same result in the long integer domain or
209when using mixed operands.
210\indexii{integer}{representation}
211
212\item[Floating point numbers]
213These represent machine-level double precision floating point numbers.
214You are at the mercy of the underlying machine architecture and
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000215\C{} implementation for the accepted range and handling of overflow.
216Python does not support single-precision floating point numbers; the
Fred Drake6e5e1d92001-07-14 02:12:27 +0000217savings in processor and memory usage that are usually the reason for using
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000218these is dwarfed by the overhead of using objects in Python, so there
219is no reason to complicate the language with two kinds of floating
220point numbers.
Fred Drakef6669171998-05-06 19:52:49 +0000221\obindex{floating point}
222\indexii{floating point}{number}
223\indexii{C}{language}
224
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000225\item[Complex numbers]
226These represent complex numbers as a pair of machine-level double
227precision floating point numbers. The same caveats apply as for
228floating point numbers. The real and imaginary value of a complex
229number \code{z} can be retrieved through the attributes \code{z.real}
230and \code{z.imag}.
231\obindex{complex}
232\indexii{complex}{number}
233
Fred Drakef6669171998-05-06 19:52:49 +0000234\end{description} % Numbers
235
Guido van Rossum77f6a652002-04-03 22:41:51 +0000236
Fred Drakef6669171998-05-06 19:52:49 +0000237\item[Sequences]
Fred Drake230d17d2001-02-22 21:28:04 +0000238These represent finite ordered sets indexed by non-negative numbers.
Fred Drakef6669171998-05-06 19:52:49 +0000239The built-in function \function{len()}\bifuncindex{len} returns the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000240number of items of a sequence.
Thomas Woutersf9b526d2000-07-16 19:05:38 +0000241When the length of a sequence is \var{n}, the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000242index set contains the numbers 0, 1, \ldots, \var{n}-1. Item
Fred Drakef6669171998-05-06 19:52:49 +0000243\var{i} of sequence \var{a} is selected by \code{\var{a}[\var{i}]}.
Fred Drakee15956b2000-04-03 04:51:13 +0000244\obindex{sequence}
Fred Drakef6669171998-05-06 19:52:49 +0000245\index{index operation}
246\index{item selection}
247\index{subscription}
248
249Sequences also support slicing: \code{\var{a}[\var{i}:\var{j}]}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000250selects all items with index \var{k} such that \var{i} \code{<=}
Fred Drakef6669171998-05-06 19:52:49 +0000251\var{k} \code{<} \var{j}. When used as an expression, a slice is a
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000252sequence of the same type. This implies that the index set is
253renumbered so that it starts at 0.
Fred Drakef6669171998-05-06 19:52:49 +0000254\index{slicing}
255
256Sequences are distinguished according to their mutability:
257
258\begin{description}
Fred Drake4856d011999-01-12 04:15:20 +0000259
Fred Drakef6669171998-05-06 19:52:49 +0000260\item[Immutable sequences]
261An object of an immutable sequence type cannot change once it is
262created. (If the object contains references to other objects,
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000263these other objects may be mutable and may be changed; however,
Fred Drakef6669171998-05-06 19:52:49 +0000264the collection of objects directly referenced by an immutable object
265cannot change.)
266\obindex{immutable sequence}
267\obindex{immutable}
268
269The following types are immutable sequences:
270
271\begin{description}
272
273\item[Strings]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000274The items of a string are characters. There is no separate
275character type; a character is represented by a string of one item.
Fred Drakef6669171998-05-06 19:52:49 +0000276Characters represent (at least) 8-bit bytes. The built-in
277functions \function{chr()}\bifuncindex{chr} and
278\function{ord()}\bifuncindex{ord} convert between characters and
279nonnegative integers representing the byte values. Bytes with the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000280values 0-127 usually represent the corresponding \ASCII{} values, but
281the interpretation of values is up to the program. The string
282data type is also used to represent arrays of bytes, e.g., to hold data
Fred Drakef6669171998-05-06 19:52:49 +0000283read from a file.
284\obindex{string}
285\index{character}
286\index{byte}
Fred Drakec37b65e2001-11-28 07:26:15 +0000287\index{ASCII@\ASCII}
Fred Drakef6669171998-05-06 19:52:49 +0000288
Fred Drakec37b65e2001-11-28 07:26:15 +0000289(On systems whose native character set is not \ASCII, strings may use
Fred Drakef6669171998-05-06 19:52:49 +0000290EBCDIC in their internal representation, provided the functions
291\function{chr()} and \function{ord()} implement a mapping between \ASCII{} and
292EBCDIC, and string comparison preserves the \ASCII{} order.
293Or perhaps someone can propose a better rule?)
Fred Drakec37b65e2001-11-28 07:26:15 +0000294\index{ASCII@\ASCII}
Fred Drakef6669171998-05-06 19:52:49 +0000295\index{EBCDIC}
296\index{character set}
297\indexii{string}{comparison}
298\bifuncindex{chr}
299\bifuncindex{ord}
300
Fred Drakef0aff8e2000-04-06 13:57:21 +0000301\item[Unicode]
302The items of a Unicode object are Unicode characters. A Unicode
303character is represented by a Unicode object of one item and can hold
304a 16-bit value representing a Unicode ordinal. The built-in functions
305\function{unichr()}\bifuncindex{unichr} and
306\function{ord()}\bifuncindex{ord} convert between characters and
307nonnegative integers representing the Unicode ordinals as defined in
308the Unicode Standard 3.0. Conversion from and to other encodings are
309possible through the Unicode method \method{encode} and the built-in
310function \function{unicode()}\bifuncindex{unicode}.
311\obindex{unicode}
312\index{character}
313\index{integer}
Fred Drake8b3ce9e2000-04-06 14:00:14 +0000314\index{Unicode}
Fred Drakef0aff8e2000-04-06 13:57:21 +0000315
Fred Drakef6669171998-05-06 19:52:49 +0000316\item[Tuples]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000317The items of a tuple are arbitrary Python objects.
318Tuples of two or more items are formed by comma-separated lists
319of expressions. A tuple of one item (a `singleton') can be formed
Fred Drakef6669171998-05-06 19:52:49 +0000320by affixing a comma to an expression (an expression by itself does
321not create a tuple, since parentheses must be usable for grouping of
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000322expressions). An empty tuple can be formed by an empty pair of
Fred Drakef6669171998-05-06 19:52:49 +0000323parentheses.
324\obindex{tuple}
325\indexii{singleton}{tuple}
326\indexii{empty}{tuple}
327
328\end{description} % Immutable sequences
329
330\item[Mutable sequences]
331Mutable sequences can be changed after they are created. The
332subscription and slicing notations can be used as the target of
333assignment and \keyword{del} (delete) statements.
Thomas Woutersf9b526d2000-07-16 19:05:38 +0000334\obindex{mutable sequence}
Fred Drakef6669171998-05-06 19:52:49 +0000335\obindex{mutable}
336\indexii{assignment}{statement}
337\index{delete}
338\stindex{del}
339\index{subscription}
340\index{slicing}
341
342There is currently a single mutable sequence type:
343
344\begin{description}
345
346\item[Lists]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000347The items of a list are arbitrary Python objects. Lists are formed
Fred Drakef6669171998-05-06 19:52:49 +0000348by placing a comma-separated list of expressions in square brackets.
349(Note that there are no special cases needed to form lists of length 0
350or 1.)
351\obindex{list}
352
353\end{description} % Mutable sequences
354
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000355The extension module \module{array}\refstmodindex{array} provides an
356additional example of a mutable sequence type.
357
358
Fred Drakef6669171998-05-06 19:52:49 +0000359\end{description} % Sequences
360
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000361\item[Mappings]
Fred Drakef6669171998-05-06 19:52:49 +0000362These represent finite sets of objects indexed by arbitrary index sets.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000363The subscript notation \code{a[k]} selects the item indexed
Fred Drakef6669171998-05-06 19:52:49 +0000364by \code{k} from the mapping \code{a}; this can be used in
365expressions and as the target of assignments or \keyword{del} statements.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000366The built-in function \function{len()} returns the number of items
Fred Drakef6669171998-05-06 19:52:49 +0000367in a mapping.
368\bifuncindex{len}
369\index{subscription}
370\obindex{mapping}
371
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000372There is currently a single intrinsic mapping type:
Fred Drakef6669171998-05-06 19:52:49 +0000373
374\begin{description}
375
376\item[Dictionaries]
Fred Drake8cdee961999-02-23 18:50:38 +0000377These\obindex{dictionary} represent finite sets of objects indexed by
378nearly arbitrary values. The only types of values not acceptable as
379keys are values containing lists or dictionaries or other mutable
380types that are compared by value rather than by object identity, the
381reason being that the efficient implementation of dictionaries
382requires a key's hash value to remain constant.
Fred Drakef6669171998-05-06 19:52:49 +0000383Numeric types used for keys obey the normal rules for numeric
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000384comparison: if two numbers compare equal (e.g., \code{1} and
Fred Drakef6669171998-05-06 19:52:49 +0000385\code{1.0}) then they can be used interchangeably to index the same
386dictionary entry.
387
Fred Drakeed5a7ca2001-09-10 15:16:08 +0000388Dictionaries are mutable; they are created by the
Fred Drake8cdee961999-02-23 18:50:38 +0000389\code{\{...\}} notation (see section \ref{dict}, ``Dictionary
390Displays'').
Fred Drakef6669171998-05-06 19:52:49 +0000391
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000392The extension modules \module{dbm}\refstmodindex{dbm},
393\module{gdbm}\refstmodindex{gdbm}, \module{bsddb}\refstmodindex{bsddb}
394provide additional examples of mapping types.
395
Fred Drakef6669171998-05-06 19:52:49 +0000396\end{description} % Mapping types
397
398\item[Callable types]
Fred Drake8cdee961999-02-23 18:50:38 +0000399These\obindex{callable} are the types to which the function call
400operation (see section \ref{calls}, ``Calls'') can be applied:
Fred Drakef6669171998-05-06 19:52:49 +0000401\indexii{function}{call}
402\index{invocation}
403\indexii{function}{argument}
Fred Drakef6669171998-05-06 19:52:49 +0000404
405\begin{description}
406
407\item[User-defined functions]
408A user-defined function object is created by a function definition
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000409(see section \ref{function}, ``Function definitions''). It should be
410called with an argument
Fred Drakef6669171998-05-06 19:52:49 +0000411list containing the same number of items as the function's formal
412parameter list.
413\indexii{user-defined}{function}
414\obindex{function}
415\obindex{user-defined function}
416
Guido van Rossum264bd591999-02-23 16:40:55 +0000417Special attributes: \member{func_doc} or \member{__doc__} is the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000418function's documentation string, or None if unavailable;
Fred Drake82385871998-10-01 20:40:43 +0000419\member{func_name} or \member{__name__} is the function's name;
420\member{func_defaults} is a tuple containing default argument values for
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000421those arguments that have defaults, or \code{None} if no arguments
Fred Drake82385871998-10-01 20:40:43 +0000422have a default value; \member{func_code} is the code object representing
423the compiled function body; \member{func_globals} is (a reference to)
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000424the dictionary that holds the function's global variables --- it
Guido van Rossumdfb658c1998-07-23 17:54:36 +0000425defines the global namespace of the module in which the function was
Barry Warsaw7a5e80e2001-02-27 03:36:30 +0000426defined; \member{func_dict} or \member{__dict__} contains the
Jeremy Hyltonaa90adc2001-03-23 17:23:50 +0000427namespace supporting arbitrary function attributes;
428\member{func_closure} is \code{None} or a tuple of cells that contain
Jeremy Hylton26c49b62002-04-01 17:58:39 +0000429bindings for the function's free variables.
Barry Warsaw7a5e80e2001-02-27 03:36:30 +0000430
Jeremy Hylton26c49b62002-04-01 17:58:39 +0000431Of these, \member{func_code}, \member{func_defaults},
Barry Warsaw7a5e80e2001-02-27 03:36:30 +0000432\member{func_doc}/\member{__doc__}, and
433\member{func_dict}/\member{__dict__} may be writable; the
Jeremy Hyltonaa90adc2001-03-23 17:23:50 +0000434others can never be changed. Additional information about a
435function's definition can be retrieved from its code object; see the
436description of internal types below.
437
Fred Drake4856d011999-01-12 04:15:20 +0000438\withsubitem{(function attribute)}{
439 \ttindex{func_doc}
440 \ttindex{__doc__}
441 \ttindex{__name__}
Barry Warsaw7a5e80e2001-02-27 03:36:30 +0000442 \ttindex{__dict__}
Fred Drake4856d011999-01-12 04:15:20 +0000443 \ttindex{func_defaults}
Jeremy Hylton26c49b62002-04-01 17:58:39 +0000444 \ttindex{func_closure}
Fred Drake4856d011999-01-12 04:15:20 +0000445 \ttindex{func_code}
Barry Warsaw7a5e80e2001-02-27 03:36:30 +0000446 \ttindex{func_globals}
447 \ttindex{func_dict}}
Guido van Rossumdfb658c1998-07-23 17:54:36 +0000448\indexii{global}{namespace}
Fred Drakef6669171998-05-06 19:52:49 +0000449
450\item[User-defined methods]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000451A user-defined method object combines a class, a class instance (or
Fred Drake8dd6ffd2001-08-02 21:34:53 +0000452\code{None}) and any callable object (normally a user-defined
453function).
Fred Drakef6669171998-05-06 19:52:49 +0000454\obindex{method}
455\obindex{user-defined method}
456\indexii{user-defined}{method}
Fred Drakef6669171998-05-06 19:52:49 +0000457
458Special read-only attributes: \member{im_self} is the class instance
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000459object, \member{im_func} is the function object;
Guido van Rossumb62f0e12001-12-07 22:03:18 +0000460\member{im_class} is the class of \member{im_self} for bound methods,
461or the class that asked for the method for unbound methods);
Fred Drake82385871998-10-01 20:40:43 +0000462\member{__doc__} is the method's documentation (same as
463\code{im_func.__doc__}); \member{__name__} is the method name (same as
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000464\code{im_func.__name__}).
Fred Drakef9d58032001-12-07 23:13:53 +0000465\versionchanged[\member{im_self} used to refer to the class that
466 defined the method]{2.2}
Fred Drake4856d011999-01-12 04:15:20 +0000467\withsubitem{(method attribute)}{
468 \ttindex{im_func}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000469 \ttindex{im_self}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000470
Barry Warsaw7a5e80e2001-02-27 03:36:30 +0000471Methods also support accessing (but not setting) the arbitrary
472function attributes on the underlying function object.
473
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000474User-defined method objects are created in two ways: when getting an
475attribute of a class that is a user-defined function object, or when
Fred Drake35c09f22000-06-28 20:15:47 +0000476getting an attribute of a class instance that is a user-defined
477function object defined by the class of the instance. In the former
478case (class attribute), the \member{im_self} attribute is \code{None},
479and the method object is said to be unbound; in the latter case
480(instance attribute), \method{im_self} is the instance, and the method
481object is said to be bound. For
Guido van Rossumb62f0e12001-12-07 22:03:18 +0000482instance, when \class{C} is a class which has a method
483\method{f()}, \code{C.f} does not yield the function object
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000484\code{f}; rather, it yields an unbound method object \code{m} where
Fred Drake82385871998-10-01 20:40:43 +0000485\code{m.im_class} is \class{C}, \code{m.im_func} is \method{f()}, and
486\code{m.im_self} is \code{None}. When \code{x} is a \class{C}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000487instance, \code{x.f} yields a bound method object \code{m} where
Fred Drake82385871998-10-01 20:40:43 +0000488\code{m.im_class} is \code{C}, \code{m.im_func} is \method{f()}, and
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000489\code{m.im_self} is \code{x}.
Fred Drake4856d011999-01-12 04:15:20 +0000490\withsubitem{(method attribute)}{
Fred Drake35c09f22000-06-28 20:15:47 +0000491 \ttindex{im_class}\ttindex{im_func}\ttindex{im_self}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000492
493When an unbound user-defined method object is called, the underlying
Fred Drake82385871998-10-01 20:40:43 +0000494function (\member{im_func}) is called, with the restriction that the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000495first argument must be an instance of the proper class
Fred Drake82385871998-10-01 20:40:43 +0000496(\member{im_class}) or of a derived class thereof.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000497
498When a bound user-defined method object is called, the underlying
Fred Drake82385871998-10-01 20:40:43 +0000499function (\member{im_func}) is called, inserting the class instance
500(\member{im_self}) in front of the argument list. For instance, when
501\class{C} is a class which contains a definition for a function
502\method{f()}, and \code{x} is an instance of \class{C}, calling
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000503\code{x.f(1)} is equivalent to calling \code{C.f(x, 1)}.
504
505Note that the transformation from function object to (unbound or
506bound) method object happens each time the attribute is retrieved from
507the class or instance. In some cases, a fruitful optimization is to
508assign the attribute to a local variable and call that local variable.
509Also notice that this transformation only happens for user-defined
510functions; other callable objects (and all non-callable objects) are
Fred Drake35c09f22000-06-28 20:15:47 +0000511retrieved without transformation. It is also important to note that
512user-defined functions which are attributes of a class instance are
513not converted to bound methods; this \emph{only} happens when the
514function is an attribute of the class.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000515
Fred Drakee31e9ce2001-12-11 21:10:08 +0000516\item[Generator functions\index{generator!function}\index{generator!iterator}]
517A function or method which uses the \keyword{yield} statement (see
518section~\ref{yield}, ``The \keyword{yield} statement'') is called a
519\dfn{generator function}. Such a function, when called, always
520returns an iterator object which can be used to execute the body of
521the function: calling the iterator's \method{next()} method will
522cause the function to execute until it provides a value using the
523\keyword{yield} statement. When the function executes a
524\keyword{return} statement or falls off the end, a
525\exception{StopIteration} exception is raised and the iterator will
526have reached the end of the set of values to be returned.
527
Fred Drakef6669171998-05-06 19:52:49 +0000528\item[Built-in functions]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000529A built-in function object is a wrapper around a \C{} function. Examples
530of built-in functions are \function{len()} and \function{math.sin()}
531(\module{math} is a standard built-in module).
532The number and type of the arguments are
Fred Drakef6669171998-05-06 19:52:49 +0000533determined by the C function.
Fred Drake82385871998-10-01 20:40:43 +0000534Special read-only attributes: \member{__doc__} is the function's
535documentation string, or \code{None} if unavailable; \member{__name__}
536is the function's name; \member{__self__} is set to \code{None} (but see
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000537the next item).
Fred Drakef6669171998-05-06 19:52:49 +0000538\obindex{built-in function}
539\obindex{function}
540\indexii{C}{language}
541
542\item[Built-in methods]
543This is really a different disguise of a built-in function, this time
544containing an object passed to the \C{} function as an implicit extra
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000545argument. An example of a built-in method is
546\code{\var{list}.append()}, assuming
Fred Drakef6669171998-05-06 19:52:49 +0000547\var{list} is a list object.
Fred Drake82385871998-10-01 20:40:43 +0000548In this case, the special read-only attribute \member{__self__} is set
Fred Drakee31e9ce2001-12-11 21:10:08 +0000549to the object denoted by \var{list}.
Fred Drakef6669171998-05-06 19:52:49 +0000550\obindex{built-in method}
551\obindex{method}
552\indexii{built-in}{method}
553
554\item[Classes]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000555Class objects are described below. When a class object is called,
556a new class instance (also described below) is created and
Fred Drakef6669171998-05-06 19:52:49 +0000557returned. This implies a call to the class's \method{__init__()} method
558if it has one. Any arguments are passed on to the \method{__init__()}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000559method. If there is no \method{__init__()} method, the class must be called
Fred Drakef6669171998-05-06 19:52:49 +0000560without arguments.
Fred Drake1e42d8a1998-11-25 17:58:50 +0000561\withsubitem{(object method)}{\ttindex{__init__()}}
Fred Drakef6669171998-05-06 19:52:49 +0000562\obindex{class}
563\obindex{class instance}
564\obindex{instance}
565\indexii{class object}{call}
566
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000567\item[Class instances]
568Class instances are described below. Class instances are callable
Fred Drake82385871998-10-01 20:40:43 +0000569only when the class has a \method{__call__()} method; \code{x(arguments)}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000570is a shorthand for \code{x.__call__(arguments)}.
571
Fred Drakef6669171998-05-06 19:52:49 +0000572\end{description}
573
574\item[Modules]
575Modules are imported by the \keyword{import} statement (see section
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000576\ref{import}, ``The \keyword{import} statement'').
Guido van Rossumdfb658c1998-07-23 17:54:36 +0000577A module object has a namespace implemented by a dictionary object
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000578(this is the dictionary referenced by the func_globals attribute of
579functions defined in the module). Attribute references are translated
580to lookups in this dictionary, e.g., \code{m.x} is equivalent to
581\code{m.__dict__["x"]}.
582A module object does not contain the code object used to
Fred Drakef6669171998-05-06 19:52:49 +0000583initialize the module (since it isn't needed once the initialization
584is done).
585\stindex{import}
586\obindex{module}
587
Guido van Rossumdfb658c1998-07-23 17:54:36 +0000588Attribute assignment updates the module's namespace dictionary,
Fred Drake82385871998-10-01 20:40:43 +0000589e.g., \samp{m.x = 1} is equivalent to \samp{m.__dict__["x"] = 1}.
Fred Drakef6669171998-05-06 19:52:49 +0000590
Guido van Rossumdfb658c1998-07-23 17:54:36 +0000591Special read-only attribute: \member{__dict__} is the module's
592namespace as a dictionary object.
Fred Drake1e42d8a1998-11-25 17:58:50 +0000593\withsubitem{(module attribute)}{\ttindex{__dict__}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000594
595Predefined (writable) attributes: \member{__name__}
596is the module's name; \member{__doc__} is the
597module's documentation string, or
Fred Drake82385871998-10-01 20:40:43 +0000598\code{None} if unavailable; \member{__file__} is the pathname of the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000599file from which the module was loaded, if it was loaded from a file.
Fred Drake82385871998-10-01 20:40:43 +0000600The \member{__file__} attribute is not present for C{} modules that are
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000601statically linked into the interpreter; for extension modules loaded
602dynamically from a shared library, it is the pathname of the shared
603library file.
Fred Drake4856d011999-01-12 04:15:20 +0000604\withsubitem{(module attribute)}{
605 \ttindex{__name__}
606 \ttindex{__doc__}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000607 \ttindex{__file__}}
Guido van Rossumdfb658c1998-07-23 17:54:36 +0000608\indexii{module}{namespace}
Fred Drakef6669171998-05-06 19:52:49 +0000609
610\item[Classes]
611Class objects are created by class definitions (see section
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000612\ref{class}, ``Class definitions'').
613A class has a namespace implemented by a dictionary object.
614Class attribute references are translated to
615lookups in this dictionary,
Fred Drake82385871998-10-01 20:40:43 +0000616e.g., \samp{C.x} is translated to \samp{C.__dict__["x"]}.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000617When the attribute name is not found
Fred Drakef6669171998-05-06 19:52:49 +0000618there, the attribute search continues in the base classes. The search
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000619is depth-first, left-to-right in the order of occurrence in the
Fred Drakef6669171998-05-06 19:52:49 +0000620base class list.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000621When a class attribute reference would yield a user-defined function
622object, it is transformed into an unbound user-defined method object
Fred Drake82385871998-10-01 20:40:43 +0000623(see above). The \member{im_class} attribute of this method object is the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000624class for which the attribute reference was initiated.
Fred Drakef6669171998-05-06 19:52:49 +0000625\obindex{class}
626\obindex{class instance}
627\obindex{instance}
628\indexii{class object}{call}
629\index{container}
630\obindex{dictionary}
631\indexii{class}{attribute}
632
633Class attribute assignments update the class's dictionary, never the
634dictionary of a base class.
635\indexiii{class}{attribute}{assignment}
636
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000637A class object can be called (see above) to yield a class instance (see
638below).
Fred Drakef6669171998-05-06 19:52:49 +0000639\indexii{class object}{call}
640
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000641Special attributes: \member{__name__} is the class name;
642\member{__module__} is the module name in which the class was defined;
Guido van Rossumdfb658c1998-07-23 17:54:36 +0000643\member{__dict__} is the dictionary containing the class's namespace;
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000644\member{__bases__} is a tuple (possibly empty or a singleton)
645containing the base classes, in the order of their occurrence in the
Fred Drake82385871998-10-01 20:40:43 +0000646base class list; \member{__doc__} is the class's documentation string,
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000647or None if undefined.
Fred Drake4856d011999-01-12 04:15:20 +0000648\withsubitem{(class attribute)}{
649 \ttindex{__name__}
650 \ttindex{__module__}
651 \ttindex{__dict__}
652 \ttindex{__bases__}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000653 \ttindex{__doc__}}
Fred Drakef6669171998-05-06 19:52:49 +0000654
655\item[Class instances]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000656A class instance is created by calling a class object (see above).
657A class instance has a namespace implemented as a dictionary which
658is the first place in which
Fred Drakef6669171998-05-06 19:52:49 +0000659attribute references are searched. When an attribute is not found
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000660there, and the instance's class has an attribute by that name,
661the search continues with the class attributes. If a class attribute
662is found that is a user-defined function object (and in no other
663case), it is transformed into an unbound user-defined method object
Fred Drake82385871998-10-01 20:40:43 +0000664(see above). The \member{im_class} attribute of this method object is
Guido van Rossumb62f0e12001-12-07 22:03:18 +0000665the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000666class of the instance for which the attribute reference was initiated.
667If no class attribute is found, and the object's class has a
Fred Drake82385871998-10-01 20:40:43 +0000668\method{__getattr__()} method, that is called to satisfy the lookup.
Fred Drakef6669171998-05-06 19:52:49 +0000669\obindex{class instance}
670\obindex{instance}
671\indexii{class}{instance}
672\indexii{class instance}{attribute}
673
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000674Attribute assignments and deletions update the instance's dictionary,
Fred Drake82385871998-10-01 20:40:43 +0000675never a class's dictionary. If the class has a \method{__setattr__()} or
676\method{__delattr__()} method, this is called instead of updating the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000677instance dictionary directly.
Fred Drakef6669171998-05-06 19:52:49 +0000678\indexiii{class instance}{attribute}{assignment}
679
680Class instances can pretend to be numbers, sequences, or mappings if
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000681they have methods with certain special names. See
682section \ref{specialnames}, ``Special method names.''
Fred Drakee15956b2000-04-03 04:51:13 +0000683\obindex{numeric}
Fred Drakef6669171998-05-06 19:52:49 +0000684\obindex{sequence}
685\obindex{mapping}
686
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000687Special attributes: \member{__dict__} is the attribute
688dictionary; \member{__class__} is the instance's class.
Fred Drake4856d011999-01-12 04:15:20 +0000689\withsubitem{(instance attribute)}{
690 \ttindex{__dict__}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000691 \ttindex{__class__}}
Fred Drakef6669171998-05-06 19:52:49 +0000692
693\item[Files]
Fred Drakee15eb351999-11-10 16:13:25 +0000694A file\obindex{file} object represents an open file. File objects are
695created by the \function{open()}\bifuncindex{open} built-in function,
696and also by
697\withsubitem{(in module os)}{\ttindex{popen()}}\function{os.popen()},
698\function{os.fdopen()}, and the
699\method{makefile()}\withsubitem{(socket method)}{\ttindex{makefile()}}
700method of socket objects (and perhaps by other functions or methods
701provided by extension modules). The objects
702\ttindex{sys.stdin}\code{sys.stdin},
703\ttindex{sys.stdout}\code{sys.stdout} and
704\ttindex{sys.stderr}\code{sys.stderr} are initialized to file objects
705corresponding to the interpreter's standard\index{stdio} input, output
706and error streams. See the \citetitle[../lib/lib.html]{Python Library
707Reference} for complete documentation of file objects.
Fred Drake4856d011999-01-12 04:15:20 +0000708\withsubitem{(in module sys)}{
709 \ttindex{stdin}
710 \ttindex{stdout}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000711 \ttindex{stderr}}
Fred Drakee15eb351999-11-10 16:13:25 +0000712
Fred Drakef6669171998-05-06 19:52:49 +0000713
714\item[Internal types]
715A few types used internally by the interpreter are exposed to the user.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000716Their definitions may change with future versions of the interpreter,
Fred Drakef6669171998-05-06 19:52:49 +0000717but they are mentioned here for completeness.
718\index{internal type}
719\index{types, internal}
720
721\begin{description}
722
723\item[Code objects]
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000724Code objects represent \emph{byte-compiled} executable Python code, or
725\emph{bytecode}.
Fred Drakef6669171998-05-06 19:52:49 +0000726The difference between a code
727object and a function object is that the function object contains an
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000728explicit reference to the function's globals (the module in which it
729was defined), while a code object contains no context;
730also the default argument values are stored in the function object,
731not in the code object (because they represent values calculated at
732run-time). Unlike function objects, code objects are immutable and
733contain no references (directly or indirectly) to mutable objects.
734\index{bytecode}
Fred Drakef6669171998-05-06 19:52:49 +0000735\obindex{code}
736
Fred Drake1e42d8a1998-11-25 17:58:50 +0000737Special read-only attributes: \member{co_name} gives the function
738name; \member{co_argcount} is the number of positional arguments
739(including arguments with default values); \member{co_nlocals} is the
740number of local variables used by the function (including arguments);
741\member{co_varnames} is a tuple containing the names of the local
Jeremy Hyltonaa90adc2001-03-23 17:23:50 +0000742variables (starting with the argument names); \member{co_cellvars} is
743a tuple containing the names of local variables that are referenced by
744nested functions; \member{co_freevars} is a tuple containing the names
Jeremy Hylton8392f362002-04-01 18:53:36 +0000745of free variables; \member{co_code} is a string representing the
746sequence of bytecode instructions;
Fred Drake1e42d8a1998-11-25 17:58:50 +0000747\member{co_consts} is a tuple containing the literals used by the
748bytecode; \member{co_names} is a tuple containing the names used by
749the bytecode; \member{co_filename} is the filename from which the code
750was compiled; \member{co_firstlineno} is the first line number of the
751function; \member{co_lnotab} is a string encoding the mapping from
Thomas Woutersf9b526d2000-07-16 19:05:38 +0000752byte code offsets to line numbers (for details see the source code of
Fred Drake1e42d8a1998-11-25 17:58:50 +0000753the interpreter); \member{co_stacksize} is the required stack size
754(including local variables); \member{co_flags} is an integer encoding
755a number of flags for the interpreter.
Jeremy Hyltonaa90adc2001-03-23 17:23:50 +0000756
Fred Drake4856d011999-01-12 04:15:20 +0000757\withsubitem{(code object attribute)}{
758 \ttindex{co_argcount}
759 \ttindex{co_code}
760 \ttindex{co_consts}
761 \ttindex{co_filename}
762 \ttindex{co_firstlineno}
763 \ttindex{co_flags}
764 \ttindex{co_lnotab}
765 \ttindex{co_name}
766 \ttindex{co_names}
767 \ttindex{co_nlocals}
768 \ttindex{co_stacksize}
Jeremy Hyltonaa90adc2001-03-23 17:23:50 +0000769 \ttindex{co_varnames}
770 \ttindex{co_cellvars}
771 \ttindex{co_freevars}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000772
Fred Drakee15956b2000-04-03 04:51:13 +0000773The following flag bits are defined for \member{co_flags}: bit
774\code{0x04} is set if the function uses the \samp{*arguments} syntax
775to accept an arbitrary number of positional arguments; bit
776\code{0x08} is set if the function uses the \samp{**keywords} syntax
Jeremy Hylton8392f362002-04-01 18:53:36 +0000777to accept arbitrary keyword arguments; bit \code{0x20} is set if the
778function is a \obindex{generator}.
779
780Future feature declarations (\samp{from __future__ import division})
781also use bits in \member{co_flags} to indicate whether a code object
782was compiled with a particular feature enabled: bit \code{0x2000} is
783set if the function was compiled with future division enabled; bits
784\code{0x10} and \code{0x1000} were used in earlier versions of Python.
785
786Other bits in \member{co_flags} are reserved for internal use.
787
788If\index{documentation string} a code object represents a function,
789the first item in
Jeremy Hyltonaa90adc2001-03-23 17:23:50 +0000790\member{co_consts} is the documentation string of the function, or
791\code{None} if undefined.
Fred Drakef6669171998-05-06 19:52:49 +0000792
793\item[Frame objects]
794Frame objects represent execution frames. They may occur in traceback
795objects (see below).
796\obindex{frame}
797
798Special read-only attributes: \member{f_back} is to the previous
799stack frame (towards the caller), or \code{None} if this is the bottom
800stack frame; \member{f_code} is the code object being executed in this
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000801frame; \member{f_locals} is the dictionary used to look up local
802variables; \member{f_globals} is used for global variables;
Fred Drake82385871998-10-01 20:40:43 +0000803\member{f_builtins} is used for built-in (intrinsic) names;
804\member{f_restricted} is a flag indicating whether the function is
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000805executing in restricted execution mode;
Fred Drakef6669171998-05-06 19:52:49 +0000806\member{f_lineno} gives the line number and \member{f_lasti} gives the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000807precise instruction (this is an index into the bytecode string of
Fred Drakef6669171998-05-06 19:52:49 +0000808the code object).
Fred Drake4856d011999-01-12 04:15:20 +0000809\withsubitem{(frame attribute)}{
810 \ttindex{f_back}
811 \ttindex{f_code}
812 \ttindex{f_globals}
813 \ttindex{f_locals}
814 \ttindex{f_lineno}
815 \ttindex{f_lasti}
816 \ttindex{f_builtins}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000817 \ttindex{f_restricted}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000818
Fred Drake82385871998-10-01 20:40:43 +0000819Special writable attributes: \member{f_trace}, if not \code{None}, is a
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000820function called at the start of each source code line (this is used by
Fred Drake82385871998-10-01 20:40:43 +0000821the debugger); \member{f_exc_type}, \member{f_exc_value},
822\member{f_exc_traceback} represent the most recent exception caught in
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000823this frame.
Fred Drake4856d011999-01-12 04:15:20 +0000824\withsubitem{(frame attribute)}{
825 \ttindex{f_trace}
826 \ttindex{f_exc_type}
827 \ttindex{f_exc_value}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000828 \ttindex{f_exc_traceback}}
Fred Drakef6669171998-05-06 19:52:49 +0000829
830\item[Traceback objects] \label{traceback}
831Traceback objects represent a stack trace of an exception. A
832traceback object is created when an exception occurs. When the search
833for an exception handler unwinds the execution stack, at each unwound
834level a traceback object is inserted in front of the current
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000835traceback. When an exception handler is entered, the stack trace is
836made available to the program.
837(See section \ref{try}, ``The \code{try} statement.'')
838It is accessible as \code{sys.exc_traceback}, and also as the third
839item of the tuple returned by \code{sys.exc_info()}. The latter is
840the preferred interface, since it works correctly when the program is
841using multiple threads.
842When the program contains no suitable handler, the stack trace is written
Fred Drakef6669171998-05-06 19:52:49 +0000843(nicely formatted) to the standard error stream; if the interpreter is
844interactive, it is also made available to the user as
845\code{sys.last_traceback}.
846\obindex{traceback}
847\indexii{stack}{trace}
848\indexii{exception}{handler}
849\indexii{execution}{stack}
Fred Drake4856d011999-01-12 04:15:20 +0000850\withsubitem{(in module sys)}{
851 \ttindex{exc_info}
852 \ttindex{exc_traceback}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000853 \ttindex{last_traceback}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000854\ttindex{sys.exc_info}
Fred Drakef6669171998-05-06 19:52:49 +0000855\ttindex{sys.exc_traceback}
856\ttindex{sys.last_traceback}
857
858Special read-only attributes: \member{tb_next} is the next level in the
859stack trace (towards the frame where the exception occurred), or
860\code{None} if there is no next level; \member{tb_frame} points to the
861execution frame of the current level; \member{tb_lineno} gives the line
862number where the exception occurred; \member{tb_lasti} indicates the
863precise instruction. The line number and last instruction in the
864traceback may differ from the line number of its frame object if the
865exception occurred in a \keyword{try} statement with no matching
866except clause or with a finally clause.
Fred Drake4856d011999-01-12 04:15:20 +0000867\withsubitem{(traceback attribute)}{
868 \ttindex{tb_next}
869 \ttindex{tb_frame}
870 \ttindex{tb_lineno}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000871 \ttindex{tb_lasti}}
Fred Drakef6669171998-05-06 19:52:49 +0000872\stindex{try}
873
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000874\item[Slice objects]
875Slice objects are used to represent slices when \emph{extended slice
876syntax} is used. This is a slice using two colons, or multiple slices
877or ellipses separated by commas, e.g., \code{a[i:j:step]}, \code{a[i:j,
878k:l]}, or \code{a[..., i:j])}. They are also created by the built-in
Fred Drake1e42d8a1998-11-25 17:58:50 +0000879\function{slice()}\bifuncindex{slice} function.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000880
Thomas Woutersf9b526d2000-07-16 19:05:38 +0000881Special read-only attributes: \member{start} is the lower bound;
882\member{stop} is the upper bound; \member{step} is the step value; each is
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000883\code{None} if omitted. These attributes can have any type.
Fred Drake4856d011999-01-12 04:15:20 +0000884\withsubitem{(slice object attribute)}{
885 \ttindex{start}
886 \ttindex{stop}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000887 \ttindex{step}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000888
Fred Drakef6669171998-05-06 19:52:49 +0000889\end{description} % Internal types
890
891\end{description} % Types
892
893
Fred Drake61c77281998-07-28 19:34:22 +0000894\section{Special method names\label{specialnames}}
Fred Drakef6669171998-05-06 19:52:49 +0000895
896A class can implement certain operations that are invoked by special
Fred Draked82575d1998-08-28 20:03:12 +0000897syntax (such as arithmetic operations or subscripting and slicing) by
898defining methods with special names. For instance, if a class defines
899a method named \method{__getitem__()}, and \code{x} is an instance of
900this class, then \code{x[i]} is equivalent to
901\code{x.__getitem__(i)}. (The reverse is not true --- if \code{x} is
902a list object, \code{x.__getitem__(i)} is not equivalent to
903\code{x[i]}.) Except where mentioned, attempts to execute an
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000904operation raise an exception when no appropriate method is defined.
Fred Drake1e42d8a1998-11-25 17:58:50 +0000905\withsubitem{(mapping object method)}{\ttindex{__getitem__()}}
Fred Drakef6669171998-05-06 19:52:49 +0000906
Fred Drake0c475592000-12-07 04:49:34 +0000907When implementing a class that emulates any built-in type, it is
908important that the emulation only be implemented to the degree that it
909makes sense for the object being modelled. For example, some
910sequences may work well with retrieval of individual elements, but
911extracting a slice may not make sense. (One example of this is the
912\class{NodeList} interface in the W3C's Document Object Model.)
913
Fred Drakef6669171998-05-06 19:52:49 +0000914
Fred Drake61c77281998-07-28 19:34:22 +0000915\subsection{Basic customization\label{customization}}
Fred Drakef6669171998-05-06 19:52:49 +0000916
Fred Drake044bb4d2001-08-02 15:53:05 +0000917\begin{methoddesc}[object]{__init__}{self\optional{, \moreargs}}
918Called\indexii{class}{constructor} when the instance is created. The
919arguments are those passed to the class constructor expression. If a
920base class has an \method{__init__()} method the derived class's
921\method{__init__()} method must explicitly call it to ensure proper
922initialization of the base class part of the instance; for example:
923\samp{BaseClass.__init__(\var{self}, [\var{args}...])}. As a special
924contraint on constructors, no value may be returned; doing so will
925cause a \exception{TypeError} to be raised at runtime.
Fred Drake1e42d8a1998-11-25 17:58:50 +0000926\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +0000927
928
Fred Drake1e42d8a1998-11-25 17:58:50 +0000929\begin{methoddesc}[object]{__del__}{self}
Guido van Rossum7c0240f1998-07-24 15:36:43 +0000930Called when the instance is about to be destroyed. This is also
931called a destructor\index{destructor}. If a base class
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000932has a \method{__del__()} method, the derived class's \method{__del__()} method
Fred Drakef6669171998-05-06 19:52:49 +0000933must explicitly call it to ensure proper deletion of the base class
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000934part of the instance. Note that it is possible (though not recommended!)
935for the \method{__del__()}
Fred Drakef6669171998-05-06 19:52:49 +0000936method to postpone destruction of the instance by creating a new
937reference to it. It may then be called at a later time when this new
938reference is deleted. It is not guaranteed that
939\method{__del__()} methods are called for objects that still exist when
940the interpreter exits.
Fred Drakef6669171998-05-06 19:52:49 +0000941\stindex{del}
942
Fred Drake591dd8f2001-12-14 22:52:41 +0000943\begin{notice}
944\samp{del x} doesn't directly call
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000945\code{x.__del__()} --- the former decrements the reference count for
946\code{x} by one, and the latter is only called when its reference
947count reaches zero. Some common situations that may prevent the
948reference count of an object to go to zero include: circular
949references between objects (e.g., a doubly-linked list or a tree data
950structure with parent and child pointers); a reference to the object
951on the stack frame of a function that caught an exception (the
952traceback stored in \code{sys.exc_traceback} keeps the stack frame
953alive); or a reference to the object on the stack frame that raised an
954unhandled exception in interactive mode (the traceback stored in
955\code{sys.last_traceback} keeps the stack frame alive). The first
956situation can only be remedied by explicitly breaking the cycles; the
Fred Drake591dd8f2001-12-14 22:52:41 +0000957latter two situations can be resolved by storing \code{None} in
958\code{sys.exc_traceback} or \code{sys.last_traceback}. Circular
959references which are garbage are detected when the option cycle
960detector is enabled (it's on by default), but can only be cleaned up
961if there are no Python-level \method{__del__()} methods involved.
962Refer to the documentation for the \ulink{\module{gc}
963module}{../lib/module-gc.html} for more information about how
964\method{__del__()} methods are handled by the cycle detector,
965particularly the description of the \code{garbage} value.
966\end{notice}
Fred Drakef6669171998-05-06 19:52:49 +0000967
Fred Drake591dd8f2001-12-14 22:52:41 +0000968\begin{notice}[warning]
969Due to the precarious circumstances under which
Fred Draked82575d1998-08-28 20:03:12 +0000970\method{__del__()} methods are invoked, exceptions that occur during their
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000971execution are ignored, and a warning is printed to \code{sys.stderr}
Fred Drake591dd8f2001-12-14 22:52:41 +0000972instead. Also, when \method{__del__()} is invoked in response to a module
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000973being deleted (e.g., when execution of the program is done), other
Fred Draked82575d1998-08-28 20:03:12 +0000974globals referenced by the \method{__del__()} method may already have been
975deleted. For this reason, \method{__del__()} methods should do the
Guido van Rossum83b2f8a1998-07-23 17:12:46 +0000976absolute minimum needed to maintain external invariants. Python 1.5
977guarantees that globals whose name begins with a single underscore are
978deleted from their module before other globals are deleted; if no
979other references to such globals exist, this may help in assuring that
980imported modules are still available at the time when the
Fred Drake591dd8f2001-12-14 22:52:41 +0000981\method{__del__()} method is called.
982\end{notice}
Fred Drake1e42d8a1998-11-25 17:58:50 +0000983\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +0000984
Fred Drake1e42d8a1998-11-25 17:58:50 +0000985\begin{methoddesc}[object]{__repr__}{self}
Fred Drake82385871998-10-01 20:40:43 +0000986Called by the \function{repr()}\bifuncindex{repr} built-in function
987and by string conversions (reverse quotes) to compute the ``official''
Andrew M. Kuchling68abe832000-12-19 14:09:21 +0000988string representation of an object. If at all possible, this should
Guido van Rossum035f7e82000-12-19 04:18:13 +0000989look like a valid Python expression that could be used to recreate an
990object with the same value (given an appropriate environment). If
991this is not possible, a string of the form \samp{<\var{...some useful
992description...}>} should be returned. The return value must be a
993string object.
994
995This is typically used for debugging, so it is important that the
996representation is information-rich and unambiguous.
Fred Drakef6669171998-05-06 19:52:49 +0000997\indexii{string}{conversion}
998\indexii{reverse}{quotes}
999\indexii{backward}{quotes}
1000\index{back-quotes}
Fred Drake1e42d8a1998-11-25 17:58:50 +00001001\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001002
Fred Drake1e42d8a1998-11-25 17:58:50 +00001003\begin{methoddesc}[object]{__str__}{self}
Fred Draked82575d1998-08-28 20:03:12 +00001004Called by the \function{str()}\bifuncindex{str} built-in function and
1005by the \keyword{print}\stindex{print} statement to compute the
Fred Drake82385871998-10-01 20:40:43 +00001006``informal'' string representation of an object. This differs from
1007\method{__repr__()} in that it does not have to be a valid Python
1008expression: a more convenient or concise representation may be used
Guido van Rossum035f7e82000-12-19 04:18:13 +00001009instead. The return value must be a string object.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001010\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001011
Guido van Rossumab782dd2001-01-18 15:17:06 +00001012\begin{methoddesc}[object]{__lt__}{self, other}
1013\methodline[object]{__le__}{self, other}
1014\methodline[object]{__eq__}{self, other}
1015\methodline[object]{__ne__}{self, other}
1016\methodline[object]{__gt__}{self, other}
1017\methodline[object]{__ge__}{self, other}
1018\versionadded{2.1}
1019These are the so-called ``rich comparison'' methods, and are called
1020for comparison operators in preference to \method{__cmp__()} below.
1021The correspondence between operator symbols and method names is as
1022follows:
1023\code{\var{x}<\var{y}} calls \code{\var{x}.__lt__(\var{y})},
1024\code{\var{x}<=\var{y}} calls \code{\var{x}.__le__(\var{y})},
1025\code{\var{x}==\var{y}} calls \code{\var{x}.__eq__(\var{y})},
1026\code{\var{x}!=\var{y}} and \code{\var{x}<>\var{y}} call
1027\code{\var{x}.__ne__(\var{y})},
1028\code{\var{x}>\var{y}} calls \code{\var{x}.__gt__(\var{y})}, and
1029\code{\var{x}>=\var{y}} calls \code{\var{x}.__ge__(\var{y})}.
1030These methods can return any value, but if the comparison operator is
1031used in a Boolean context, the return value should be interpretable as
1032a Boolean value, else a \exception{TypeError} will be raised.
1033By convention, \code{0} is used for false and \code{1} for true.
1034
1035There are no reflected (swapped-argument) versions of these methods
1036(to be used when the left argument does not support the operation but
1037the right argument does); rather, \method{__lt__()} and
1038\method{__gt__()} are each other's reflection, \method{__le__()} and
1039\method{__ge__()} are each other's reflection, and \method{__eq__()}
1040and \method{__ne__()} are their own reflection.
1041
1042Arguments to rich comparison methods are never coerced. A rich
1043comparison method may return \code{NotImplemented} if it does not
1044implement the operation for a given pair of arguments.
1045\end{methoddesc}
1046
Fred Drake1e42d8a1998-11-25 17:58:50 +00001047\begin{methoddesc}[object]{__cmp__}{self, other}
Guido van Rossumab782dd2001-01-18 15:17:06 +00001048Called by comparison operations if rich comparison (see above) is not
Fred Drake597bc1d2001-05-29 16:02:35 +00001049defined. Should return a negative integer if \code{self < other},
1050zero if \code{self == other}, a positive integer if \code{self >
1051other}. If no \method{__cmp__()}, \method{__eq__()} or
1052\method{__ne__()} operation is defined, class instances are compared
1053by object identity (``address''). See also the description of
1054\method{__hash__()} for some important notes on creating objects which
1055support custom comparison operations and are usable as dictionary
1056keys.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001057(Note: the restriction that exceptions are not propagated by
Fred Drake82385871998-10-01 20:40:43 +00001058\method{__cmp__()} has been removed in Python 1.5.)
Fred Drakef6669171998-05-06 19:52:49 +00001059\bifuncindex{cmp}
1060\index{comparisons}
Fred Drake1e42d8a1998-11-25 17:58:50 +00001061\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001062
Fred Drakee57a1142000-06-15 20:07:25 +00001063\begin{methoddesc}[object]{__rcmp__}{self, other}
Fred Drake445f8322001-01-04 15:11:48 +00001064 \versionchanged[No longer supported]{2.1}
Fred Drakee57a1142000-06-15 20:07:25 +00001065\end{methoddesc}
1066
Fred Drake1e42d8a1998-11-25 17:58:50 +00001067\begin{methoddesc}[object]{__hash__}{self}
Fred Draked82575d1998-08-28 20:03:12 +00001068Called for the key object for dictionary\obindex{dictionary}
1069operations, and by the built-in function
Fred Drakef6669171998-05-06 19:52:49 +00001070\function{hash()}\bifuncindex{hash}. Should return a 32-bit integer
1071usable as a hash value
1072for dictionary operations. The only required property is that objects
1073which compare equal have the same hash value; it is advised to somehow
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001074mix together (e.g., using exclusive or) the hash values for the
Fred Drakef6669171998-05-06 19:52:49 +00001075components of the object that also play a part in comparison of
1076objects. If a class does not define a \method{__cmp__()} method it should
1077not define a \method{__hash__()} operation either; if it defines
Fred Drake597bc1d2001-05-29 16:02:35 +00001078\method{__cmp__()} or \method{__eq__()} but not \method{__hash__()},
1079its instances will not be usable as dictionary keys. If a class
1080defines mutable objects and implements a \method{__cmp__()} or
1081\method{__eq__()} method, it should not implement \method{__hash__()},
1082since the dictionary implementation requires that a key's hash value
1083is immutable (if the object's hash value changes, it will be in the
1084wrong hash bucket).
Fred Drake1e42d8a1998-11-25 17:58:50 +00001085\withsubitem{(object method)}{\ttindex{__cmp__()}}
1086\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001087
Fred Drake1e42d8a1998-11-25 17:58:50 +00001088\begin{methoddesc}[object]{__nonzero__}{self}
Guido van Rossum77f6a652002-04-03 22:41:51 +00001089Called to implement truth value testing, and the built-in operation
1090\code{bool()}; should return \code{False} or \code{True}, or their
1091integer equivalents \code{0} or \code{1}.
1092When this method is not defined, \method{__len__()} is
Fred Draked82575d1998-08-28 20:03:12 +00001093called, if it is defined (see below). If a class defines neither
1094\method{__len__()} nor \method{__nonzero__()}, all its instances are
1095considered true.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001096\withsubitem{(mapping object method)}{\ttindex{__len__()}}
1097\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001098
1099
Fred Drake61c77281998-07-28 19:34:22 +00001100\subsection{Customizing attribute access\label{attribute-access}}
Fred Drakef6669171998-05-06 19:52:49 +00001101
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001102The following methods can be defined to customize the meaning of
1103attribute access (use of, assignment to, or deletion of \code{x.name})
1104for class instances.
1105For performance reasons, these methods are cached in the class object
1106at class definition time; therefore, they cannot be changed after the
1107class definition is executed.
Fred Drakef6669171998-05-06 19:52:49 +00001108
Fred Drake1e42d8a1998-11-25 17:58:50 +00001109\begin{methoddesc}[object]{__getattr__}{self, name}
Fred Drakef6669171998-05-06 19:52:49 +00001110Called when an attribute lookup has not found the attribute in the
1111usual places (i.e. it is not an instance attribute nor is it found in
1112the class tree for \code{self}). \code{name} is the attribute name.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001113This method should return the (computed) attribute value or raise an
Fred Draked82575d1998-08-28 20:03:12 +00001114\exception{AttributeError} exception.
Fred Drakef6669171998-05-06 19:52:49 +00001115
1116Note that if the attribute is found through the normal mechanism,
Fred Draked82575d1998-08-28 20:03:12 +00001117\method{__getattr__()} is not called. (This is an intentional
1118asymmetry between \method{__getattr__()} and \method{__setattr__()}.)
Fred Drakef6669171998-05-06 19:52:49 +00001119This is done both for efficiency reasons and because otherwise
Fred Draked82575d1998-08-28 20:03:12 +00001120\method{__setattr__()} would have no way to access other attributes of
1121the instance.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001122Note that at least for instance variables, you can fake
1123total control by not inserting any values in the instance
1124attribute dictionary (but instead inserting them in another object).
Fred Drake1e42d8a1998-11-25 17:58:50 +00001125\withsubitem{(object method)}{\ttindex{__setattr__()}}
1126\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001127
Fred Drake1e42d8a1998-11-25 17:58:50 +00001128\begin{methoddesc}[object]{__setattr__}{self, name, value}
Fred Drakef6669171998-05-06 19:52:49 +00001129Called when an attribute assignment is attempted. This is called
Fred Draked82575d1998-08-28 20:03:12 +00001130instead of the normal mechanism (i.e.\ store the value in the instance
1131dictionary). \var{name} is the attribute name, \var{value} is the
Fred Drakef6669171998-05-06 19:52:49 +00001132value to be assigned to it.
Fred Drakef6669171998-05-06 19:52:49 +00001133
Fred Draked82575d1998-08-28 20:03:12 +00001134If \method{__setattr__()} wants to assign to an instance attribute, it
1135should not simply execute \samp{self.\var{name} = value} --- this
1136would cause a recursive call to itself. Instead, it should insert the
1137value in the dictionary of instance attributes, e.g.,
1138\samp{self.__dict__[\var{name}] = value}.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001139\withsubitem{(instance attribute)}{\ttindex{__dict__}}
1140\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001141
Fred Drake1e42d8a1998-11-25 17:58:50 +00001142\begin{methoddesc}[object]{__delattr__}{self, name}
Fred Draked82575d1998-08-28 20:03:12 +00001143Like \method{__setattr__()} but for attribute deletion instead of
Fred Drake1e42d8a1998-11-25 17:58:50 +00001144assignment. This should only be implemented if \samp{del
1145obj.\var{name}} is meaningful for the object.
1146\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001147
1148
Fred Drake61c77281998-07-28 19:34:22 +00001149\subsection{Emulating callable objects\label{callable-types}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001150
Fred Drake1e42d8a1998-11-25 17:58:50 +00001151\begin{methoddesc}[object]{__call__}{self\optional{, args...}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001152Called when the instance is ``called'' as a function; if this method
Fred Draked82575d1998-08-28 20:03:12 +00001153is defined, \code{\var{x}(arg1, arg2, ...)} is a shorthand for
1154\code{\var{x}.__call__(arg1, arg2, ...)}.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001155\indexii{call}{instance}
Fred Drake1e42d8a1998-11-25 17:58:50 +00001156\end{methoddesc}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001157
1158
Fred Drake73921b02001-10-01 16:32:13 +00001159\subsection{Emulating container types\label{sequence-types}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001160
Fred Drake73921b02001-10-01 16:32:13 +00001161The following methods can be defined to implement container
1162objects. Containers usually are sequences (such as lists or tuples)
1163or mappings (like dictionaries), but can represent other containers as
1164well. The first set of methods is used either to emulate a
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001165sequence or to emulate a mapping; the difference is that for a
1166sequence, the allowable keys should be the integers \var{k} for which
1167\code{0 <= \var{k} < \var{N}} where \var{N} is the length of the
Thomas Wouters1d75a792000-08-17 22:37:32 +00001168sequence, or slice objects, which define a range of items. (For backwards
1169compatibility, the method \method{__getslice__()} (see below) can also be
1170defined to handle simple, but not extended slices.) It is also recommended
Fred Drakea0073822000-08-18 02:42:14 +00001171that mappings provide the methods \method{keys()}, \method{values()},
Thomas Wouters1d75a792000-08-17 22:37:32 +00001172\method{items()}, \method{has_key()}, \method{get()}, \method{clear()},
1173\method{copy()}, and \method{update()} behaving similar to those for
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001174Python's standard dictionary objects; mutable sequences should provide
1175methods \method{append()}, \method{count()}, \method{index()},
1176\method{insert()}, \method{pop()}, \method{remove()}, \method{reverse()}
1177and \method{sort()}, like Python standard list objects. Finally,
1178sequence types should implement addition (meaning concatenation) and
1179multiplication (meaning repetition) by defining the methods
Thomas Wouters12bba852000-08-24 20:06:04 +00001180\method{__add__()}, \method{__radd__()}, \method{__iadd__()},
1181\method{__mul__()}, \method{__rmul__()} and \method{__imul__()} described
1182below; they should not define \method{__coerce__()} or other numerical
Guido van Rossum0dbb4fb2001-04-20 16:50:40 +00001183operators. It is recommended that both mappings and sequences
Fred Drake18d8d5a2001-09-18 17:58:20 +00001184implement the \method{__contains__()} method to allow efficient use of
1185the \code{in} operator; for mappings, \code{in} should be equivalent
1186of \method{has_key()}; for sequences, it should search through the
1187values.
Fred Drake4856d011999-01-12 04:15:20 +00001188\withsubitem{(mapping object method)}{
1189 \ttindex{keys()}
1190 \ttindex{values()}
1191 \ttindex{items()}
1192 \ttindex{has_key()}
1193 \ttindex{get()}
1194 \ttindex{clear()}
1195 \ttindex{copy()}
Guido van Rossum0dbb4fb2001-04-20 16:50:40 +00001196 \ttindex{update()}
1197 \ttindex{__contains__()}}
Fred Drake4856d011999-01-12 04:15:20 +00001198\withsubitem{(sequence object method)}{
1199 \ttindex{append()}
1200 \ttindex{count()}
1201 \ttindex{index()}
1202 \ttindex{insert()}
1203 \ttindex{pop()}
1204 \ttindex{remove()}
1205 \ttindex{reverse()}
1206 \ttindex{sort()}
1207 \ttindex{__add__()}
1208 \ttindex{__radd__()}
Thomas Wouters12bba852000-08-24 20:06:04 +00001209 \ttindex{__iadd__()}
Fred Drake4856d011999-01-12 04:15:20 +00001210 \ttindex{__mul__()}
Thomas Wouters12bba852000-08-24 20:06:04 +00001211 \ttindex{__rmul__()}
Guido van Rossum0dbb4fb2001-04-20 16:50:40 +00001212 \ttindex{__imul__()}
1213 \ttindex{__contains__()}}
Fred Drakeae3e5741999-01-28 23:21:49 +00001214\withsubitem{(numeric object method)}{\ttindex{__coerce__()}}
Fred Drakef6669171998-05-06 19:52:49 +00001215
Fred Drake73921b02001-10-01 16:32:13 +00001216\begin{methoddesc}[container object]{__len__}{self}
Fred Draked82575d1998-08-28 20:03:12 +00001217Called to implement the built-in function
1218\function{len()}\bifuncindex{len}. Should return the length of the
1219object, an integer \code{>=} 0. Also, an object that doesn't define a
1220\method{__nonzero__()} method and whose \method{__len__()} method
1221returns zero is considered to be false in a Boolean context.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001222\withsubitem{(object method)}{\ttindex{__nonzero__()}}
1223\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001224
Fred Drake73921b02001-10-01 16:32:13 +00001225\begin{methoddesc}[container object]{__getitem__}{self, key}
Fred Draked82575d1998-08-28 20:03:12 +00001226Called to implement evaluation of \code{\var{self}[\var{key}]}.
Fred Drake31575ce2000-09-21 05:28:26 +00001227For sequence types, the accepted keys should be integers and slice
1228objects.\obindex{slice} Note that
1229the special interpretation of negative indexes (if the class wishes to
Fred Drakef6669171998-05-06 19:52:49 +00001230emulate a sequence type) is up to the \method{__getitem__()} method.
Fred Drake91826ed2000-07-13 04:57:58 +00001231If \var{key} is of an inappropriate type, \exception{TypeError} may be
1232raised; if of a value outside the set of indexes for the sequence
1233(after any special interpretation of negative values),
1234\exception{IndexError} should be raised.
Fred Drake0aa811c2001-10-20 04:24:09 +00001235\note{\keyword{for} loops expect that an
Fred Drake91826ed2000-07-13 04:57:58 +00001236\exception{IndexError} will be raised for illegal indexes to allow
Fred Drake0aa811c2001-10-20 04:24:09 +00001237proper detection of the end of the sequence.}
Fred Drake1e42d8a1998-11-25 17:58:50 +00001238\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001239
Fred Drake73921b02001-10-01 16:32:13 +00001240\begin{methoddesc}[container object]{__setitem__}{self, key, value}
Fred Draked82575d1998-08-28 20:03:12 +00001241Called to implement assignment to \code{\var{self}[\var{key}]}. Same
Fred Drake1e42d8a1998-11-25 17:58:50 +00001242note as for \method{__getitem__()}. This should only be implemented
1243for mappings if the objects support changes to the values for keys, or
1244if new keys can be added, or for sequences if elements can be
Fred Drake91826ed2000-07-13 04:57:58 +00001245replaced. The same exceptions should be raised for improper
1246\var{key} values as for the \method{__getitem__()} method.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001247\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001248
Fred Drake73921b02001-10-01 16:32:13 +00001249\begin{methoddesc}[container object]{__delitem__}{self, key}
Fred Draked82575d1998-08-28 20:03:12 +00001250Called to implement deletion of \code{\var{self}[\var{key}]}. Same
Fred Drake1e42d8a1998-11-25 17:58:50 +00001251note as for \method{__getitem__()}. This should only be implemented
1252for mappings if the objects support removal of keys, or for sequences
Fred Drake91826ed2000-07-13 04:57:58 +00001253if elements can be removed from the sequence. The same exceptions
1254should be raised for improper \var{key} values as for the
1255\method{__getitem__()} method.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001256\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001257
Fred Drake73921b02001-10-01 16:32:13 +00001258\begin{methoddesc}[container object]{__iter__}{self}
1259This method is called when an iterator is required for a container.
1260This method should return a new iterator object that can iterate over
1261all the objects in the container. For mappings, it should iterate
1262over the keys of the container, and should also be made available as
1263the method \method{iterkeys()}.
1264
1265Iterator objects also need to implement this method; they are required
1266to return themselves. For more information on iterator objects, see
1267``\ulink{Iterator Types}{../lib/typeiter.html}'' in the
1268\citetitle[../lib/lib.html]{Python Library Reference}.
1269\end{methoddesc}
1270
1271The membership test operators (\keyword{in} and \keyword{not in}) are
1272normally implemented as an iteration through a sequence. However,
1273container objects can supply the following special method with a more
1274efficient implementation, which also does not require the object be a
1275sequence.
1276
1277\begin{methoddesc}[container object]{__contains__}{self, item}
1278Called to implement membership test operators. Should return true if
1279\var{item} is in \var{self}, false otherwise. For mapping objects,
1280this should consider the keys of the mapping rather than the values or
1281the key-item pairs.
1282\end{methoddesc}
1283
Fred Drakef6669171998-05-06 19:52:49 +00001284
Fred Drake3041b071998-10-21 00:25:32 +00001285\subsection{Additional methods for emulation of sequence types
Fred Drake61c77281998-07-28 19:34:22 +00001286 \label{sequence-methods}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001287
1288The following methods can be defined to further emulate sequence
1289objects. Immutable sequences methods should only define
1290\method{__getslice__()}; mutable sequences, should define all three
1291three methods.
Fred Drakef6669171998-05-06 19:52:49 +00001292
Fred Drake1e42d8a1998-11-25 17:58:50 +00001293\begin{methoddesc}[sequence object]{__getslice__}{self, i, j}
Fred Drakea0073822000-08-18 02:42:14 +00001294\deprecated{2.0}{Support slice objects as parameters to the
1295\method{__getitem__()} method.}
Fred Draked82575d1998-08-28 20:03:12 +00001296Called to implement evaluation of \code{\var{self}[\var{i}:\var{j}]}.
1297The returned object should be of the same type as \var{self}. Note
1298that missing \var{i} or \var{j} in the slice expression are replaced
Fred Drakee15956b2000-04-03 04:51:13 +00001299by zero or \code{sys.maxint}, respectively. If negative indexes are
1300used in the slice, the length of the sequence is added to that index.
1301If the instance does not implement the \method{__len__()} method, an
1302\exception{AttributeError} is raised.
1303No guarantee is made that indexes adjusted this way are not still
1304negative. Indexes which are greater than the length of the sequence
1305are not modified.
Fred Drakea0073822000-08-18 02:42:14 +00001306If no \method{__getslice__()} is found, a slice
Thomas Wouters1d75a792000-08-17 22:37:32 +00001307object is created instead, and passed to \method{__getitem__()} instead.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001308\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001309
Fred Drake1e42d8a1998-11-25 17:58:50 +00001310\begin{methoddesc}[sequence object]{__setslice__}{self, i, j, sequence}
Fred Draked82575d1998-08-28 20:03:12 +00001311Called to implement assignment to \code{\var{self}[\var{i}:\var{j}]}.
1312Same notes for \var{i} and \var{j} as for \method{__getslice__()}.
Thomas Wouters1d75a792000-08-17 22:37:32 +00001313
Fred Drakefb8ffe62001-04-13 15:54:41 +00001314This method is deprecated. If no \method{__setslice__()} is found, a
1315slice object is created instead, and passed to \method{__setitem__()}
1316instead.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001317\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001318
Fred Drake1e42d8a1998-11-25 17:58:50 +00001319\begin{methoddesc}[sequence object]{__delslice__}{self, i, j}
Fred Draked82575d1998-08-28 20:03:12 +00001320Called to implement deletion of \code{\var{self}[\var{i}:\var{j}]}.
1321Same notes for \var{i} and \var{j} as for \method{__getslice__()}.
Fred Drakefb8ffe62001-04-13 15:54:41 +00001322This method is deprecated. If no \method{__delslice__()} is found, a
1323slice object is created instead, and passed to \method{__delitem__()}
1324instead.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001325\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001326
Fred Drakefb8ffe62001-04-13 15:54:41 +00001327Notice that these methods are only invoked when a single slice with a
1328single colon is used, and the slice method is available. For slice
1329operations involving extended slice notation, or in absence of the
1330slice methods, \method{__getitem__()}, \method{__setitem__()} or
1331\method{__delitem__()} is called with a slice object as argument.
Fred Drakef6669171998-05-06 19:52:49 +00001332
Fred Drakef89259782000-09-21 22:27:16 +00001333The following example demonstrate how to make your program or module
1334compatible with earlier versions of Python (assuming that methods
1335\method{__getitem__()}, \method{__setitem__()} and \method{__delitem__()}
1336support slice objects as arguments):
1337
1338\begin{verbatim}
1339class MyClass:
1340 ...
1341 def __getitem__(self, index):
1342 ...
1343 def __setitem__(self, index, value):
1344 ...
1345 def __delitem__(self, index):
1346 ...
1347
1348 if sys.version_info < (2, 0):
1349 # They won't be defined if version is at least 2.0 final
1350
1351 def __getslice__(self, i, j):
1352 return self[max(0, i):max(0, j):]
1353 def __setslice__(self, i, j, seq):
1354 self[max(0, i):max(0, j):] = seq
1355 def __delslice__(self, i, j):
1356 del self[max(0, i):max(0, j):]
1357 ...
1358\end{verbatim}
1359
1360Note the calls to \function{max()}; these are actually necessary due
1361to the handling of negative indices before the
1362\method{__*slice__()} methods are called. When negative indexes are
1363used, the \method{__*item__()} methods receive them as provided, but
1364the \method{__*slice__()} methods get a ``cooked'' form of the index
1365values. For each negative index value, the length of the sequence is
1366added to the index before calling the method (which may still result
1367in a negative index); this is the customary handling of negative
1368indexes by the built-in sequence types, and the \method{__*item__()}
1369methods are expected to do this as well. However, since they should
1370already be doing that, negative indexes cannot be passed in; they must
1371be be constrained to the bounds of the sequence before being passed to
1372the \method{__*item__()} methods.
1373Calling \code{max(0, i)} conveniently returns the proper value.
1374
Fred Drake15988fd1999-02-12 18:14:57 +00001375
Fred Drake61c77281998-07-28 19:34:22 +00001376\subsection{Emulating numeric types\label{numeric-types}}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001377
1378The following methods can be defined to emulate numeric objects.
1379Methods corresponding to operations that are not supported by the
1380particular kind of number implemented (e.g., bitwise operations for
1381non-integral numbers) should be left undefined.
Fred Drakef6669171998-05-06 19:52:49 +00001382
Fred Drakeb8943701999-05-10 13:43:22 +00001383\begin{methoddesc}[numeric object]{__add__}{self, other}
1384\methodline[numeric object]{__sub__}{self, other}
1385\methodline[numeric object]{__mul__}{self, other}
Fred Drake3e2aca42001-08-14 20:28:08 +00001386\methodline[numeric object]{__floordiv__}{self, other}
Fred Drakeb8943701999-05-10 13:43:22 +00001387\methodline[numeric object]{__mod__}{self, other}
1388\methodline[numeric object]{__divmod__}{self, other}
1389\methodline[numeric object]{__pow__}{self, other\optional{, modulo}}
1390\methodline[numeric object]{__lshift__}{self, other}
1391\methodline[numeric object]{__rshift__}{self, other}
1392\methodline[numeric object]{__and__}{self, other}
1393\methodline[numeric object]{__xor__}{self, other}
1394\methodline[numeric object]{__or__}{self, other}
Fred Drake3e2aca42001-08-14 20:28:08 +00001395These methods are
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001396called to implement the binary arithmetic operations (\code{+},
Fred Drake3e2aca42001-08-14 20:28:08 +00001397\code{-}, \code{*}, \code{//}, \code{\%},
Fred Draked82575d1998-08-28 20:03:12 +00001398\function{divmod()}\bifuncindex{divmod},
Fred Drakefb8ffe62001-04-13 15:54:41 +00001399\function{pow()}\bifuncindex{pow}, \code{**}, \code{<}\code{<},
1400\code{>}\code{>}, \code{\&}, \code{\^}, \code{|}). For instance, to
1401evaluate the expression \var{x}\code{+}\var{y}, where \var{x} is an
1402instance of a class that has an \method{__add__()} method,
Fred Drake3e2aca42001-08-14 20:28:08 +00001403\code{\var{x}.__add__(\var{y})} is called. The \method{__divmod__()}
1404method should be the equivalent to using \method{__floordiv__()} and
1405\method{__mod__()}; it should not be related to \method{__truediv__()}
1406(described below). Note that
Fred Draked82575d1998-08-28 20:03:12 +00001407\method{__pow__()} should be defined to accept an optional third
1408argument if the ternary version of the built-in
1409\function{pow()}\bifuncindex{pow} function is to be supported.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001410\end{methoddesc}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001411
Fred Drake3e2aca42001-08-14 20:28:08 +00001412\begin{methoddesc}[numeric object]{__div__}{self, other}
1413\methodline[numeric object]{__truediv__}{self, other}
1414The division operator (\code{/}) is implemented by these methods. The
1415\method{__truediv__()} method is used when \code{__future__.division}
1416is in effect, otherwise \method{__div__()} is used. If only one of
1417these two methods is defined, the object will not support division in
1418the alternate context; \exception{TypeError} will be raised instead.
1419\end{methoddesc}
1420
Fred Drakeb8943701999-05-10 13:43:22 +00001421\begin{methoddesc}[numeric object]{__radd__}{self, other}
1422\methodline[numeric object]{__rsub__}{self, other}
1423\methodline[numeric object]{__rmul__}{self, other}
1424\methodline[numeric object]{__rdiv__}{self, other}
1425\methodline[numeric object]{__rmod__}{self, other}
1426\methodline[numeric object]{__rdivmod__}{self, other}
1427\methodline[numeric object]{__rpow__}{self, other}
1428\methodline[numeric object]{__rlshift__}{self, other}
1429\methodline[numeric object]{__rrshift__}{self, other}
1430\methodline[numeric object]{__rand__}{self, other}
1431\methodline[numeric object]{__rxor__}{self, other}
1432\methodline[numeric object]{__ror__}{self, other}
Fred Drake3e2aca42001-08-14 20:28:08 +00001433These methods are
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001434called to implement the binary arithmetic operations (\code{+},
Fred Draked82575d1998-08-28 20:03:12 +00001435\code{-}, \code{*}, \code{/}, \code{\%},
1436\function{divmod()}\bifuncindex{divmod},
Fred Drakefb8ffe62001-04-13 15:54:41 +00001437\function{pow()}\bifuncindex{pow}, \code{**}, \code{<}\code{<},
1438\code{>}\code{>}, \code{\&}, \code{\^}, \code{|}) with reflected
1439(swapped) operands. These functions are only called if the left
1440operand does not support the corresponding operation. For instance,
1441to evaluate the expression \var{x}\code{-}\var{y}, where \var{y} is an
1442instance of a class that has an \method{__rsub__()} method,
1443\code{\var{y}.__rsub__(\var{x})} is called. Note that ternary
1444\function{pow()}\bifuncindex{pow} will not try calling
1445\method{__rpow__()} (the coercion rules would become too
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001446complicated).
Fred Drake1e42d8a1998-11-25 17:58:50 +00001447\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001448
Thomas Woutersdc90cc22000-12-11 23:11:51 +00001449\begin{methoddesc}[numeric object]{__iadd__}{self, other}
1450\methodline[numeric object]{__isub__}{self, other}
1451\methodline[numeric object]{__imul__}{self, other}
1452\methodline[numeric object]{__idiv__}{self, other}
1453\methodline[numeric object]{__imod__}{self, other}
1454\methodline[numeric object]{__ipow__}{self, other\optional{, modulo}}
1455\methodline[numeric object]{__ilshift__}{self, other}
1456\methodline[numeric object]{__irshift__}{self, other}
1457\methodline[numeric object]{__iand__}{self, other}
1458\methodline[numeric object]{__ixor__}{self, other}
1459\methodline[numeric object]{__ior__}{self, other}
Fred Drakefb8ffe62001-04-13 15:54:41 +00001460These methods are called to implement the augmented arithmetic
1461operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
1462\code{**=}, \code{<}\code{<=}, \code{>}\code{>=}, \code{\&=},
1463\code{\^=}, \code{|=}). These methods should attempt to do the
1464operation in-place (modifying \var{self}) and return the result (which
1465could be, but does not have to be, \var{self}). If a specific method
1466is not defined, the augmented operation falls back to the normal
1467methods. For instance, to evaluate the expression
1468\var{x}\code{+=}\var{y}, where \var{x} is an instance of a class that
1469has an \method{__iadd__()} method, \code{\var{x}.__iadd__(\var{y})} is
1470called. If \var{x} is an instance of a class that does not define a
1471\method{__iadd()} method, \code{\var{x}.__add__(\var{y})} and
1472\code{\var{y}.__radd__(\var{x})} are considered, as with the
1473evaluation of \var{x}\code{+}\var{y}.
Thomas Woutersdc90cc22000-12-11 23:11:51 +00001474\end{methoddesc}
1475
Fred Drakeb8943701999-05-10 13:43:22 +00001476\begin{methoddesc}[numeric object]{__neg__}{self}
1477\methodline[numeric object]{__pos__}{self}
1478\methodline[numeric object]{__abs__}{self}
1479\methodline[numeric object]{__invert__}{self}
Fred Drakefb8ffe62001-04-13 15:54:41 +00001480Called to implement the unary arithmetic operations (\code{-},
1481\code{+}, \function{abs()}\bifuncindex{abs} and \code{\~{}}).
Fred Drake1e42d8a1998-11-25 17:58:50 +00001482\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001483
Fred Drakeb8943701999-05-10 13:43:22 +00001484\begin{methoddesc}[numeric object]{__complex__}{self}
1485\methodline[numeric object]{__int__}{self}
1486\methodline[numeric object]{__long__}{self}
1487\methodline[numeric object]{__float__}{self}
Fred Draked82575d1998-08-28 20:03:12 +00001488Called to implement the built-in functions
Fred Drake15988fd1999-02-12 18:14:57 +00001489\function{complex()}\bifuncindex{complex},
1490\function{int()}\bifuncindex{int}, \function{long()}\bifuncindex{long},
Fred Draked82575d1998-08-28 20:03:12 +00001491and \function{float()}\bifuncindex{float}. Should return a value of
1492the appropriate type.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001493\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001494
Fred Drakeb8943701999-05-10 13:43:22 +00001495\begin{methoddesc}[numeric object]{__oct__}{self}
1496\methodline[numeric object]{__hex__}{self}
Fred Draked82575d1998-08-28 20:03:12 +00001497Called to implement the built-in functions
1498\function{oct()}\bifuncindex{oct} and
1499\function{hex()}\bifuncindex{hex}. Should return a string value.
Fred Drake1e42d8a1998-11-25 17:58:50 +00001500\end{methoddesc}
Fred Drakef6669171998-05-06 19:52:49 +00001501
Fred Drakeb8943701999-05-10 13:43:22 +00001502\begin{methoddesc}[numeric object]{__coerce__}{self, other}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001503Called to implement ``mixed-mode'' numeric arithmetic. Should either
Fred Draked82575d1998-08-28 20:03:12 +00001504return a 2-tuple containing \var{self} and \var{other} converted to
Fred Drakeb8943701999-05-10 13:43:22 +00001505a common numeric type, or \code{None} if conversion is impossible. When
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001506the common type would be the type of \code{other}, it is sufficient to
1507return \code{None}, since the interpreter will also ask the other
1508object to attempt a coercion (but sometimes, if the implementation of
1509the other type cannot be changed, it is useful to do the conversion to
1510the other type here).
Fred Drake1e42d8a1998-11-25 17:58:50 +00001511\end{methoddesc}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001512
1513\strong{Coercion rules}: to evaluate \var{x} \var{op} \var{y}, the
Fred Drakefb8ffe62001-04-13 15:54:41 +00001514following steps are taken (where \method{__\var{op}__()} and
1515\method{__r\var{op}__()} are the method names corresponding to
1516\var{op}, e.g., if \var{op} is `\code{+}', \method{__add__()} and
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001517\method{__radd__()} are used). If an exception occurs at any point,
1518the evaluation is abandoned and exception handling takes over.
1519
1520\begin{itemize}
1521
Fred Drakefb8ffe62001-04-13 15:54:41 +00001522\item[0.] If \var{x} is a string object and \var{op} is the modulo
1523 operator (\%), the string formatting operation is invoked and
1524 the remaining steps are skipped.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001525
1526\item[1.] If \var{x} is a class instance:
1527
Fred Drake230d17d2001-02-22 21:28:04 +00001528 \begin{itemize}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001529
Fred Drake230d17d2001-02-22 21:28:04 +00001530 \item[1a.] If \var{x} has a \method{__coerce__()} method:
1531 replace \var{x} and \var{y} with the 2-tuple returned by
1532 \code{\var{x}.__coerce__(\var{y})}; skip to step 2 if the
1533 coercion returns \code{None}.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001534
Fred Drake230d17d2001-02-22 21:28:04 +00001535 \item[1b.] If neither \var{x} nor \var{y} is a class instance
1536 after coercion, go to step 3.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001537
Fred Drakefb8ffe62001-04-13 15:54:41 +00001538 \item[1c.] If \var{x} has a method \method{__\var{op}__()}, return
1539 \code{\var{x}.__\var{op}__(\var{y})}; otherwise, restore \var{x} and
Fred Drake230d17d2001-02-22 21:28:04 +00001540 \var{y} to their value before step 1a.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001541
Fred Drake230d17d2001-02-22 21:28:04 +00001542 \end{itemize}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001543
1544\item[2.] If \var{y} is a class instance:
1545
Fred Drake230d17d2001-02-22 21:28:04 +00001546 \begin{itemize}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001547
Fred Drake230d17d2001-02-22 21:28:04 +00001548 \item[2a.] If \var{y} has a \method{__coerce__()} method:
1549 replace \var{y} and \var{x} with the 2-tuple returned by
1550 \code{\var{y}.__coerce__(\var{x})}; skip to step 3 if the
1551 coercion returns \code{None}.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001552
Fred Drake230d17d2001-02-22 21:28:04 +00001553 \item[2b.] If neither \var{x} nor \var{y} is a class instance
1554 after coercion, go to step 3.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001555
Fred Drakefb8ffe62001-04-13 15:54:41 +00001556 \item[2b.] If \var{y} has a method \method{__r\var{op}__()},
1557 return \code{\var{y}.__r\var{op}__(\var{x})}; otherwise,
1558 restore \var{x} and \var{y} to their value before step 2a.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001559
Fred Drake230d17d2001-02-22 21:28:04 +00001560 \end{itemize}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001561
1562\item[3.] We only get here if neither \var{x} nor \var{y} is a class
1563instance.
1564
Fred Drake230d17d2001-02-22 21:28:04 +00001565 \begin{itemize}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001566
Fred Drakefb8ffe62001-04-13 15:54:41 +00001567 \item[3a.] If \var{op} is `\code{+}' and \var{x} is a
1568 sequence, sequence concatenation is invoked.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001569
Fred Drakefb8ffe62001-04-13 15:54:41 +00001570 \item[3b.] If \var{op} is `\code{*}' and one operand is a
1571 sequence and the other an integer, sequence repetition is
1572 invoked.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001573
Fred Drake230d17d2001-02-22 21:28:04 +00001574 \item[3c.] Otherwise, both operands must be numbers; they are
1575 coerced to a common type if possible, and the numeric
1576 operation is invoked for that type.
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001577
Fred Drake230d17d2001-02-22 21:28:04 +00001578 \end{itemize}
Guido van Rossum83b2f8a1998-07-23 17:12:46 +00001579
1580\end{itemize}