blob: ddc605b8bb8edec365141a9256138778e756f16a [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2.. _datamodel:
3
4**********
5Data model
6**********
7
8
9.. _objects:
10
11Objects, values and types
12=========================
13
14.. index::
15 single: object
16 single: data
17
18:dfn:`Objects` are Python's abstraction for data. All data in a Python program
19is represented by objects or by relations between objects. (In a sense, and in
20conformance to Von Neumann's model of a "stored program computer," code is also
21represented by objects.)
22
23.. index::
24 builtin: id
25 builtin: type
26 single: identity of an object
27 single: value of an object
28 single: type of an object
29 single: mutable object
30 single: immutable object
31
Georg Brandl85eb8c12007-08-31 16:33:38 +000032.. XXX it *is* now possible in some cases to change an object's
33 type, under certain controlled conditions
34
Georg Brandl116aa622007-08-15 14:28:22 +000035Every object has an identity, a type and a value. An object's *identity* never
36changes once it has been created; you may think of it as the object's address in
37memory. The ':keyword:`is`' operator compares the identity of two objects; the
38:func:`id` function returns an integer representing its identity (currently
Nick Coghlan3a5d7e32008-08-31 12:40:14 +000039implemented as its address). An object's :dfn:`type` is also unchangeable. [#]_
Georg Brandl116aa622007-08-15 14:28:22 +000040An object's type determines the operations that the object supports (e.g., "does
41it have a length?") and also defines the possible values for objects of that
42type. The :func:`type` function returns an object's type (which is an object
43itself). The *value* of some objects can change. Objects whose value can
44change are said to be *mutable*; objects whose value is unchangeable once they
45are created are called *immutable*. (The value of an immutable container object
46that contains a reference to a mutable object can change when the latter's value
47is changed; however the container is still considered immutable, because the
48collection of objects it contains cannot be changed. So, immutability is not
49strictly the same as having an unchangeable value, it is more subtle.) An
50object's mutability is determined by its type; for instance, numbers, strings
51and tuples are immutable, while dictionaries and lists are mutable.
52
53.. index::
54 single: garbage collection
55 single: reference counting
56 single: unreachable object
57
58Objects are never explicitly destroyed; however, when they become unreachable
59they may be garbage-collected. An implementation is allowed to postpone garbage
60collection or omit it altogether --- it is a matter of implementation quality
61how garbage collection is implemented, as long as no objects are collected that
62are still reachable. (Implementation note: the current implementation uses a
63reference-counting scheme with (optional) delayed detection of cyclically linked
64garbage, which collects most objects as soon as they become unreachable, but is
65not guaranteed to collect garbage containing circular references. See the
66documentation of the :mod:`gc` module for information on controlling the
67collection of cyclic garbage.)
68
69Note that the use of the implementation's tracing or debugging facilities may
70keep objects alive that would normally be collectable. Also note that catching
71an exception with a ':keyword:`try`...\ :keyword:`except`' statement may keep
72objects alive.
73
74Some objects contain references to "external" resources such as open files or
75windows. It is understood that these resources are freed when the object is
76garbage-collected, but since garbage collection is not guaranteed to happen,
77such objects also provide an explicit way to release the external resource,
78usually a :meth:`close` method. Programs are strongly recommended to explicitly
79close such objects. The ':keyword:`try`...\ :keyword:`finally`' statement
Nick Coghlan3a5d7e32008-08-31 12:40:14 +000080and the ':keyword:`with`' statement provide convenient ways to do this.
Georg Brandl116aa622007-08-15 14:28:22 +000081
82.. index:: single: container
83
84Some objects contain references to other objects; these are called *containers*.
85Examples of containers are tuples, lists and dictionaries. The references are
86part of a container's value. In most cases, when we talk about the value of a
87container, we imply the values, not the identities of the contained objects;
88however, when we talk about the mutability of a container, only the identities
89of the immediately contained objects are implied. So, if an immutable container
90(like a tuple) contains a reference to a mutable object, its value changes if
91that mutable object is changed.
92
93Types affect almost all aspects of object behavior. Even the importance of
94object identity is affected in some sense: for immutable types, operations that
95compute new values may actually return a reference to any existing object with
96the same type and value, while for mutable objects this is not allowed. E.g.,
97after ``a = 1; b = 1``, ``a`` and ``b`` may or may not refer to the same object
98with the value one, depending on the implementation, but after ``c = []; d =
99[]``, ``c`` and ``d`` are guaranteed to refer to two different, unique, newly
100created empty lists. (Note that ``c = d = []`` assigns the same object to both
101``c`` and ``d``.)
102
103
104.. _types:
105
106The standard type hierarchy
107===========================
108
109.. index::
110 single: type
111 pair: data; type
112 pair: type; hierarchy
113 pair: extension; module
114 pair: C; language
115
116Below is a list of the types that are built into Python. Extension modules
117(written in C, Java, or other languages, depending on the implementation) can
118define additional types. Future versions of Python may add types to the type
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000119hierarchy (e.g., rational numbers, efficiently stored arrays of integers, etc.),
120although such additions will often be provided via the standard library instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000121
122.. index::
123 single: attribute
124 pair: special; attribute
125 triple: generic; special; attribute
126
127Some of the type descriptions below contain a paragraph listing 'special
128attributes.' These are attributes that provide access to the implementation and
129are not intended for general use. Their definition may change in the future.
130
131None
132 .. index:: object: None
133
134 This type has a single value. There is a single object with this value. This
135 object is accessed through the built-in name ``None``. It is used to signify the
136 absence of a value in many situations, e.g., it is returned from functions that
137 don't explicitly return anything. Its truth value is false.
138
139NotImplemented
140 .. index:: object: NotImplemented
141
142 This type has a single value. There is a single object with this value. This
143 object is accessed through the built-in name ``NotImplemented``. Numeric methods
144 and rich comparison methods may return this value if they do not implement the
145 operation for the operands provided. (The interpreter will then try the
146 reflected operation, or some other fallback, depending on the operator.) Its
147 truth value is true.
148
149Ellipsis
150 .. index:: object: Ellipsis
151
152 This type has a single value. There is a single object with this value. This
153 object is accessed through the literal ``...`` or the built-in name
154 ``Ellipsis``. Its truth value is true.
155
Christian Heimes072c0f12008-01-03 23:01:04 +0000156:class:`numbers.Number`
Georg Brandl116aa622007-08-15 14:28:22 +0000157 .. index:: object: numeric
158
159 These are created by numeric literals and returned as results by arithmetic
160 operators and arithmetic built-in functions. Numeric objects are immutable;
161 once created their value never changes. Python numbers are of course strongly
162 related to mathematical numbers, but subject to the limitations of numerical
163 representation in computers.
164
165 Python distinguishes between integers, floating point numbers, and complex
166 numbers:
167
Christian Heimes072c0f12008-01-03 23:01:04 +0000168 :class:`numbers.Integral`
Georg Brandl116aa622007-08-15 14:28:22 +0000169 .. index:: object: integer
170
171 These represent elements from the mathematical set of integers (positive and
172 negative).
173
Georg Brandl59d69162008-01-07 09:27:36 +0000174 There are two types of integers:
Georg Brandl116aa622007-08-15 14:28:22 +0000175
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000176 Integers (:class:`int`)
Georg Brandl116aa622007-08-15 14:28:22 +0000177
Georg Brandl116aa622007-08-15 14:28:22 +0000178 These represent numbers in an unlimited range, subject to available (virtual)
179 memory only. For the purpose of shift and mask operations, a binary
180 representation is assumed, and negative numbers are represented in a variant of
181 2's complement which gives the illusion of an infinite string of sign bits
182 extending to the left.
183
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000184 Booleans (:class:`bool`)
Georg Brandl116aa622007-08-15 14:28:22 +0000185 .. index::
186 object: Boolean
187 single: False
188 single: True
189
190 These represent the truth values False and True. The two objects representing
191 the values False and True are the only Boolean objects. The Boolean type is a
Georg Brandl95817b32008-05-11 14:30:18 +0000192 subtype of the integer type, and Boolean values behave like the values 0 and 1,
Georg Brandl116aa622007-08-15 14:28:22 +0000193 respectively, in almost all contexts, the exception being that when converted to
194 a string, the strings ``"False"`` or ``"True"`` are returned, respectively.
195
196 .. index:: pair: integer; representation
197
198 The rules for integer representation are intended to give the most meaningful
Georg Brandlbb74a782008-05-11 10:53:16 +0000199 interpretation of shift and mask operations involving negative integers.
Georg Brandl116aa622007-08-15 14:28:22 +0000200
Christian Heimes072c0f12008-01-03 23:01:04 +0000201 :class:`numbers.Real` (:class:`float`)
Georg Brandl116aa622007-08-15 14:28:22 +0000202 .. index::
203 object: floating point
204 pair: floating point; number
205 pair: C; language
206 pair: Java; language
207
208 These represent machine-level double precision floating point numbers. You are
209 at the mercy of the underlying machine architecture (and C or Java
210 implementation) for the accepted range and handling of overflow. Python does not
211 support single-precision floating point numbers; the savings in processor and
212 memory usage that are usually the reason for using these is dwarfed by the
213 overhead of using objects in Python, so there is no reason to complicate the
214 language with two kinds of floating point numbers.
215
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000216 :class:`numbers.Complex` (:class:`complex`)
Georg Brandl116aa622007-08-15 14:28:22 +0000217 .. index::
218 object: complex
219 pair: complex; number
220
221 These represent complex numbers as a pair of machine-level double precision
222 floating point numbers. The same caveats apply as for floating point numbers.
223 The real and imaginary parts of a complex number ``z`` can be retrieved through
224 the read-only attributes ``z.real`` and ``z.imag``.
225
Georg Brandl116aa622007-08-15 14:28:22 +0000226Sequences
227 .. index::
228 builtin: len
229 object: sequence
230 single: index operation
231 single: item selection
232 single: subscription
233
234 These represent finite ordered sets indexed by non-negative numbers. The
235 built-in function :func:`len` returns the number of items of a sequence. When
236 the length of a sequence is *n*, the index set contains the numbers 0, 1,
237 ..., *n*-1. Item *i* of sequence *a* is selected by ``a[i]``.
238
239 .. index:: single: slicing
240
241 Sequences also support slicing: ``a[i:j]`` selects all items with index *k* such
242 that *i* ``<=`` *k* ``<`` *j*. When used as an expression, a slice is a
243 sequence of the same type. This implies that the index set is renumbered so
244 that it starts at 0.
245
Georg Brandl116aa622007-08-15 14:28:22 +0000246 Some sequences also support "extended slicing" with a third "step" parameter:
247 ``a[i:j:k]`` selects all items of *a* with index *x* where ``x = i + n*k``, *n*
248 ``>=`` ``0`` and *i* ``<=`` *x* ``<`` *j*.
249
250 Sequences are distinguished according to their mutability:
251
252 Immutable sequences
253 .. index::
254 object: immutable sequence
255 object: immutable
256
257 An object of an immutable sequence type cannot change once it is created. (If
258 the object contains references to other objects, these other objects may be
259 mutable and may be changed; however, the collection of objects directly
260 referenced by an immutable object cannot change.)
261
262 The following types are immutable sequences:
263
264 Strings
265 .. index::
266 builtin: chr
267 builtin: ord
Georg Brandldcc56f82007-08-31 16:41:12 +0000268 builtin: str
Georg Brandl116aa622007-08-15 14:28:22 +0000269 single: character
270 single: integer
271 single: Unicode
272
Georg Brandldcc56f82007-08-31 16:41:12 +0000273 The items of a string object are Unicode code units. A Unicode code
274 unit is represented by a string object of one item and can hold either
275 a 16-bit or 32-bit value representing a Unicode ordinal (the maximum
276 value for the ordinal is given in ``sys.maxunicode``, and depends on
277 how Python is configured at compile time). Surrogate pairs may be
278 present in the Unicode object, and will be reported as two separate
279 items. The built-in functions :func:`chr` and :func:`ord` convert
280 between code units and nonnegative integers representing the Unicode
281 ordinals as defined in the Unicode Standard 3.0. Conversion from and to
282 other encodings are possible through the string method :meth:`encode`.
Georg Brandl116aa622007-08-15 14:28:22 +0000283
284 Tuples
285 .. index::
286 object: tuple
287 pair: singleton; tuple
288 pair: empty; tuple
289
Georg Brandldcc56f82007-08-31 16:41:12 +0000290 The items of a tuple are arbitrary Python objects. Tuples of two or
291 more items are formed by comma-separated lists of expressions. A tuple
292 of one item (a 'singleton') can be formed by affixing a comma to an
293 expression (an expression by itself does not create a tuple, since
294 parentheses must be usable for grouping of expressions). An empty
295 tuple can be formed by an empty pair of parentheses.
Georg Brandl116aa622007-08-15 14:28:22 +0000296
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000297 Bytes
298 .. index:: bytes, byte
299
300 A bytes object is an immutable array. The items are 8-bit bytes,
301 represented by integers in the range 0 <= x < 256. Bytes literals
302 (like ``b'abc'`` and the built-in function :func:`bytes` can be used to
303 construct bytes objects. Also, bytes objects can be decoded to strings
304 via the :meth:`decode` method.
305
Georg Brandl116aa622007-08-15 14:28:22 +0000306 Mutable sequences
307 .. index::
308 object: mutable sequence
309 object: mutable
310 pair: assignment; statement
311 single: delete
312 statement: del
313 single: subscription
314 single: slicing
315
316 Mutable sequences can be changed after they are created. The subscription and
317 slicing notations can be used as the target of assignment and :keyword:`del`
318 (delete) statements.
319
320 There is currently a single intrinsic mutable sequence type:
321
322 Lists
323 .. index:: object: list
324
Georg Brandldcc56f82007-08-31 16:41:12 +0000325 The items of a list are arbitrary Python objects. Lists are formed by
326 placing a comma-separated list of expressions in square brackets. (Note
327 that there are no special cases needed to form lists of length 0 or 1.)
328
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000329 Byte Arrays
330 .. index:: bytearray
Georg Brandldcc56f82007-08-31 16:41:12 +0000331
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000332 A bytearray object is a mutable array. They are created by the built-in
333 :func:`bytearray` constructor. Aside from being mutable (and hence
334 unhashable), byte arrays otherwise provide the same interface and
335 functionality as immutable bytes objects.
Georg Brandl116aa622007-08-15 14:28:22 +0000336
337 .. index:: module: array
338
Georg Brandldcc56f82007-08-31 16:41:12 +0000339 The extension module :mod:`array` provides an additional example of a
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000340 mutable sequence type, as does the :mod:`collections` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000341
Georg Brandl116aa622007-08-15 14:28:22 +0000342Set types
343 .. index::
344 builtin: len
345 object: set type
346
347 These represent unordered, finite sets of unique, immutable objects. As such,
348 they cannot be indexed by any subscript. However, they can be iterated over, and
349 the built-in function :func:`len` returns the number of items in a set. Common
350 uses for sets are fast membership testing, removing duplicates from a sequence,
351 and computing mathematical operations such as intersection, union, difference,
352 and symmetric difference.
353
354 For set elements, the same immutability rules apply as for dictionary keys. Note
355 that numeric types obey the normal rules for numeric comparison: if two numbers
356 compare equal (e.g., ``1`` and ``1.0``), only one of them can be contained in a
357 set.
358
359 There are currently two intrinsic set types:
360
361 Sets
362 .. index:: object: set
363
364 These represent a mutable set. They are created by the built-in :func:`set`
365 constructor and can be modified afterwards by several methods, such as
366 :meth:`add`.
367
368 Frozen sets
369 .. index:: object: frozenset
370
Guido van Rossum2cc30da2007-11-02 23:46:40 +0000371 These represent an immutable set. They are created by the built-in
372 :func:`frozenset` constructor. As a frozenset is immutable and
373 :term:`hashable`, it can be used again as an element of another set, or as
374 a dictionary key.
Georg Brandl116aa622007-08-15 14:28:22 +0000375
Georg Brandl116aa622007-08-15 14:28:22 +0000376Mappings
377 .. index::
378 builtin: len
379 single: subscription
380 object: mapping
381
382 These represent finite sets of objects indexed by arbitrary index sets. The
383 subscript notation ``a[k]`` selects the item indexed by ``k`` from the mapping
384 ``a``; this can be used in expressions and as the target of assignments or
385 :keyword:`del` statements. The built-in function :func:`len` returns the number
386 of items in a mapping.
387
388 There is currently a single intrinsic mapping type:
389
390 Dictionaries
391 .. index:: object: dictionary
392
393 These represent finite sets of objects indexed by nearly arbitrary values. The
394 only types of values not acceptable as keys are values containing lists or
395 dictionaries or other mutable types that are compared by value rather than by
396 object identity, the reason being that the efficient implementation of
397 dictionaries requires a key's hash value to remain constant. Numeric types used
398 for keys obey the normal rules for numeric comparison: if two numbers compare
399 equal (e.g., ``1`` and ``1.0``) then they can be used interchangeably to index
400 the same dictionary entry.
401
402 Dictionaries are mutable; they can be created by the ``{...}`` notation (see
403 section :ref:`dict`).
404
405 .. index::
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000406 module: dbm.ndbm
407 module: dbm.gnu
Georg Brandl116aa622007-08-15 14:28:22 +0000408
Benjamin Peterson9a46cab2008-09-08 02:49:30 +0000409 The extension modules :mod:`dbm.ndbm` and :mod:`dbm.gnu` provide
410 additional examples of mapping types, as does the :mod:`collections`
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000411 module.
Georg Brandl116aa622007-08-15 14:28:22 +0000412
Georg Brandl116aa622007-08-15 14:28:22 +0000413Callable types
414 .. index::
415 object: callable
416 pair: function; call
417 single: invocation
418 pair: function; argument
419
420 These are the types to which the function call operation (see section
421 :ref:`calls`) can be applied:
422
423 User-defined functions
424 .. index::
425 pair: user-defined; function
426 object: function
427 object: user-defined function
428
429 A user-defined function object is created by a function definition (see
430 section :ref:`function`). It should be called with an argument list
431 containing the same number of items as the function's formal parameter
432 list.
433
434 Special attributes:
435
436 +-------------------------+-------------------------------+-----------+
437 | Attribute | Meaning | |
438 +=========================+===============================+===========+
439 | :attr:`__doc__` | The function's documentation | Writable |
440 | | string, or ``None`` if | |
441 | | unavailable | |
442 +-------------------------+-------------------------------+-----------+
443 | :attr:`__name__` | The function's name | Writable |
444 +-------------------------+-------------------------------+-----------+
445 | :attr:`__module__` | The name of the module the | Writable |
446 | | function was defined in, or | |
447 | | ``None`` if unavailable. | |
448 +-------------------------+-------------------------------+-----------+
449 | :attr:`__defaults__` | A tuple containing default | Writable |
450 | | argument values for those | |
451 | | arguments that have defaults, | |
452 | | or ``None`` if no arguments | |
453 | | have a default value | |
454 +-------------------------+-------------------------------+-----------+
455 | :attr:`__code__` | The code object representing | Writable |
456 | | the compiled function body. | |
457 +-------------------------+-------------------------------+-----------+
458 | :attr:`__globals__` | A reference to the dictionary | Read-only |
459 | | that holds the function's | |
460 | | global variables --- the | |
461 | | global namespace of the | |
462 | | module in which the function | |
463 | | was defined. | |
464 +-------------------------+-------------------------------+-----------+
465 | :attr:`__dict__` | The namespace supporting | Writable |
466 | | arbitrary function | |
467 | | attributes. | |
468 +-------------------------+-------------------------------+-----------+
469 | :attr:`__closure__` | ``None`` or a tuple of cells | Read-only |
470 | | that contain bindings for the | |
471 | | function's free variables. | |
472 +-------------------------+-------------------------------+-----------+
473 | :attr:`__annotations__` | A dict containing annotations | Writable |
474 | | of parameters. The keys of | |
475 | | the dict are the parameter | |
476 | | names, or ``'return'`` for | |
477 | | the return annotation, if | |
478 | | provided. | |
479 +-------------------------+-------------------------------+-----------+
480 | :attr:`__kwdefaults__` | A dict containing defaults | Writable |
481 | | for keyword-only parameters. | |
482 +-------------------------+-------------------------------+-----------+
483
484 Most of the attributes labelled "Writable" check the type of the assigned value.
485
Georg Brandl116aa622007-08-15 14:28:22 +0000486 Function objects also support getting and setting arbitrary attributes, which
487 can be used, for example, to attach metadata to functions. Regular attribute
488 dot-notation is used to get and set such attributes. *Note that the current
489 implementation only supports function attributes on user-defined functions.
490 Function attributes on built-in functions may be supported in the future.*
491
492 Additional information about a function's definition can be retrieved from its
493 code object; see the description of internal types below.
494
495 .. index::
496 single: __doc__ (function attribute)
497 single: __name__ (function attribute)
498 single: __module__ (function attribute)
499 single: __dict__ (function attribute)
500 single: __defaults__ (function attribute)
501 single: __closure__ (function attribute)
502 single: __code__ (function attribute)
503 single: __globals__ (function attribute)
504 single: __annotations__ (function attribute)
505 single: __kwdefaults__ (function attribute)
506 pair: global; namespace
507
Georg Brandl2e0b7552007-11-27 12:43:08 +0000508 Instance methods
Georg Brandl116aa622007-08-15 14:28:22 +0000509 .. index::
510 object: method
511 object: user-defined method
512 pair: user-defined; method
513
Georg Brandl2e0b7552007-11-27 12:43:08 +0000514 An instance method object combines a class, a class instance and any
515 callable object (normally a user-defined function).
516
517 .. index::
518 single: __func__ (method attribute)
519 single: __self__ (method attribute)
520 single: __doc__ (method attribute)
521 single: __name__ (method attribute)
522 single: __module__ (method attribute)
Georg Brandl116aa622007-08-15 14:28:22 +0000523
Christian Heimesff737952007-11-27 10:40:20 +0000524 Special read-only attributes: :attr:`__self__` is the class instance object,
525 :attr:`__func__` is the function object; :attr:`__doc__` is the method's
526 documentation (same as ``__func__.__doc__``); :attr:`__name__` is the
527 method name (same as ``__func__.__name__``); :attr:`__module__` is the
528 name of the module the method was defined in, or ``None`` if unavailable.
Georg Brandl116aa622007-08-15 14:28:22 +0000529
Georg Brandl116aa622007-08-15 14:28:22 +0000530 Methods also support accessing (but not setting) the arbitrary function
531 attributes on the underlying function object.
532
Georg Brandl2e0b7552007-11-27 12:43:08 +0000533 User-defined method objects may be created when getting an attribute of a
534 class (perhaps via an instance of that class), if that attribute is a
535 user-defined function object or a class method object.
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000536
Georg Brandl2e0b7552007-11-27 12:43:08 +0000537 When an instance method object is created by retrieving a user-defined
538 function object from a class via one of its instances, its
539 :attr:`__self__` attribute is the instance, and the method object is said
540 to be bound. The new method's :attr:`__func__` attribute is the original
541 function object.
Georg Brandl116aa622007-08-15 14:28:22 +0000542
Georg Brandl2e0b7552007-11-27 12:43:08 +0000543 When a user-defined method object is created by retrieving another method
544 object from a class or instance, the behaviour is the same as for a
545 function object, except that the :attr:`__func__` attribute of the new
546 instance is not the original method object but its :attr:`__func__`
547 attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000548
Georg Brandl2e0b7552007-11-27 12:43:08 +0000549 When an instance method object is created by retrieving a class method
550 object from a class or instance, its :attr:`__self__` attribute is the
551 class itself, and its :attr:`__func__` attribute is the function object
552 underlying the class method.
Georg Brandl116aa622007-08-15 14:28:22 +0000553
Georg Brandl2e0b7552007-11-27 12:43:08 +0000554 When an instance method object is called, the underlying function
555 (:attr:`__func__`) is called, inserting the class instance
556 (:attr:`__self__`) in front of the argument list. For instance, when
557 :class:`C` is a class which contains a definition for a function
558 :meth:`f`, and ``x`` is an instance of :class:`C`, calling ``x.f(1)`` is
559 equivalent to calling ``C.f(x, 1)``.
Georg Brandl116aa622007-08-15 14:28:22 +0000560
Georg Brandl2e0b7552007-11-27 12:43:08 +0000561 When an instance method object is derived from a class method object, the
562 "class instance" stored in :attr:`__self__` will actually be the class
563 itself, so that calling either ``x.f(1)`` or ``C.f(1)`` is equivalent to
564 calling ``f(C,1)`` where ``f`` is the underlying function.
Georg Brandl116aa622007-08-15 14:28:22 +0000565
Georg Brandl2e0b7552007-11-27 12:43:08 +0000566 Note that the transformation from function object to instance method
567 object happens each time the attribute is retrieved from the instance. In
568 some cases, a fruitful optimization is to assign the attribute to a local
569 variable and call that local variable. Also notice that this
570 transformation only happens for user-defined functions; other callable
571 objects (and all non-callable objects) are retrieved without
572 transformation. It is also important to note that user-defined functions
573 which are attributes of a class instance are not converted to bound
574 methods; this *only* happens when the function is an attribute of the
575 class.
Georg Brandl116aa622007-08-15 14:28:22 +0000576
577 Generator functions
578 .. index::
579 single: generator; function
580 single: generator; iterator
581
582 A function or method which uses the :keyword:`yield` statement (see section
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000583 :ref:`yield`) is called a :dfn:`generator function`. Such a function, when
584 called, always returns an iterator object which can be used to execute the
585 body of the function: calling the iterator's :meth:`__next__` method will
586 cause the function to execute until it provides a value using the
587 :keyword:`yield` statement. When the function executes a
Georg Brandl116aa622007-08-15 14:28:22 +0000588 :keyword:`return` statement or falls off the end, a :exc:`StopIteration`
589 exception is raised and the iterator will have reached the end of the set of
590 values to be returned.
591
592 Built-in functions
593 .. index::
594 object: built-in function
595 object: function
596 pair: C; language
597
598 A built-in function object is a wrapper around a C function. Examples of
599 built-in functions are :func:`len` and :func:`math.sin` (:mod:`math` is a
600 standard built-in module). The number and type of the arguments are
601 determined by the C function. Special read-only attributes:
602 :attr:`__doc__` is the function's documentation string, or ``None`` if
603 unavailable; :attr:`__name__` is the function's name; :attr:`__self__` is
604 set to ``None`` (but see the next item); :attr:`__module__` is the name of
605 the module the function was defined in or ``None`` if unavailable.
606
607 Built-in methods
608 .. index::
609 object: built-in method
610 object: method
611 pair: built-in; method
612
613 This is really a different disguise of a built-in function, this time containing
614 an object passed to the C function as an implicit extra argument. An example of
615 a built-in method is ``alist.append()``, assuming *alist* is a list object. In
616 this case, the special read-only attribute :attr:`__self__` is set to the object
617 denoted by *list*.
618
Georg Brandl85eb8c12007-08-31 16:33:38 +0000619 Classes
620 Classes are callable. These objects normally act as factories for new
621 instances of themselves, but variations are possible for class types that
622 override :meth:`__new__`. The arguments of the call are passed to
623 :meth:`__new__` and, in the typical case, to :meth:`__init__` to
624 initialize the new instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000625
Georg Brandl85eb8c12007-08-31 16:33:38 +0000626 Class Instances
627 Instances of arbitrary classes can be made callable by defining a
628 :meth:`__call__` method in their class.
Georg Brandl116aa622007-08-15 14:28:22 +0000629
Georg Brandl116aa622007-08-15 14:28:22 +0000630
631Modules
632 .. index::
633 statement: import
634 object: module
635
636 Modules are imported by the :keyword:`import` statement (see section
637 :ref:`import`). A module object has a
638 namespace implemented by a dictionary object (this is the dictionary referenced
639 by the __globals__ attribute of functions defined in the module). Attribute
640 references are translated to lookups in this dictionary, e.g., ``m.x`` is
641 equivalent to ``m.__dict__["x"]``. A module object does not contain the code
642 object used to initialize the module (since it isn't needed once the
643 initialization is done).
644
Georg Brandl116aa622007-08-15 14:28:22 +0000645 Attribute assignment updates the module's namespace dictionary, e.g., ``m.x =
646 1`` is equivalent to ``m.__dict__["x"] = 1``.
647
648 .. index:: single: __dict__ (module attribute)
649
650 Special read-only attribute: :attr:`__dict__` is the module's namespace as a
651 dictionary object.
652
653 .. index::
654 single: __name__ (module attribute)
655 single: __doc__ (module attribute)
656 single: __file__ (module attribute)
657 pair: module; namespace
658
659 Predefined (writable) attributes: :attr:`__name__` is the module's name;
660 :attr:`__doc__` is the module's documentation string, or ``None`` if
661 unavailable; :attr:`__file__` is the pathname of the file from which the module
662 was loaded, if it was loaded from a file. The :attr:`__file__` attribute is not
663 present for C modules that are statically linked into the interpreter; for
664 extension modules loaded dynamically from a shared library, it is the pathname
665 of the shared library file.
666
Georg Brandl85eb8c12007-08-31 16:33:38 +0000667Custom classes
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000668 Custon class types are typically created by class definitions (see section
669 :ref:`class`). A class has a namespace implemented by a dictionary object.
670 Class attribute references are translated to lookups in this dictionary, e.g.,
671 ``C.x`` is translated to ``C.__dict__["x"]`` (although there are a number of
672 hooks which allow for other means of locating attributes). When the attribute
673 name is not found there, the attribute search continues in the base classes.
674 This search of the base classes uses the C3 method resolution order which
675 behaves correctly even in the presence of 'diamond' inheritance structures
676 where there are multiple inheritance paths leading back to a common ancestor.
677 Additional details on the C3 MRO used by Python can be found in the
678 documentation accompanying the 2.3 release at
679 http://www.python.org/download/releases/2.3/mro/.
Georg Brandl116aa622007-08-15 14:28:22 +0000680
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000681 .. XXX: Could we add that MRO doc as an appendix to the language ref?
Georg Brandl85eb8c12007-08-31 16:33:38 +0000682
Georg Brandl116aa622007-08-15 14:28:22 +0000683 .. index::
684 object: class
685 object: class instance
686 object: instance
687 pair: class object; call
688 single: container
689 object: dictionary
690 pair: class; attribute
691
692 When a class attribute reference (for class :class:`C`, say) would yield a
Georg Brandl2e0b7552007-11-27 12:43:08 +0000693 class method object, it is transformed into an instance method object whose
694 :attr:`__self__` attributes is :class:`C`. When it would yield a static
695 method object, it is transformed into the object wrapped by the static method
696 object. See section :ref:`descriptors` for another way in which attributes
697 retrieved from a class may differ from those actually contained in its
698 :attr:`__dict__`.
Georg Brandl116aa622007-08-15 14:28:22 +0000699
700 .. index:: triple: class; attribute; assignment
701
702 Class attribute assignments update the class's dictionary, never the dictionary
703 of a base class.
704
705 .. index:: pair: class object; call
706
707 A class object can be called (see above) to yield a class instance (see below).
708
709 .. index::
710 single: __name__ (class attribute)
711 single: __module__ (class attribute)
712 single: __dict__ (class attribute)
713 single: __bases__ (class attribute)
714 single: __doc__ (class attribute)
715
716 Special attributes: :attr:`__name__` is the class name; :attr:`__module__` is
717 the module name in which the class was defined; :attr:`__dict__` is the
718 dictionary containing the class's namespace; :attr:`__bases__` is a tuple
719 (possibly empty or a singleton) containing the base classes, in the order of
720 their occurrence in the base class list; :attr:`__doc__` is the class's
721 documentation string, or None if undefined.
722
723Class instances
724 .. index::
725 object: class instance
726 object: instance
727 pair: class; instance
728 pair: class instance; attribute
729
Georg Brandl2e0b7552007-11-27 12:43:08 +0000730 A class instance is created by calling a class object (see above). A class
731 instance has a namespace implemented as a dictionary which is the first place
732 in which attribute references are searched. When an attribute is not found
733 there, and the instance's class has an attribute by that name, the search
734 continues with the class attributes. If a class attribute is found that is a
735 user-defined function object, it is transformed into an instance method
736 object whose :attr:`__self__` attribute is the instance. Static method and
737 class method objects are also transformed; see above under "Classes". See
738 section :ref:`descriptors` for another way in which attributes of a class
739 retrieved via its instances may differ from the objects actually stored in
740 the class's :attr:`__dict__`. If no class attribute is found, and the
741 object's class has a :meth:`__getattr__` method, that is called to satisfy
742 the lookup.
Georg Brandl116aa622007-08-15 14:28:22 +0000743
744 .. index:: triple: class instance; attribute; assignment
745
746 Attribute assignments and deletions update the instance's dictionary, never a
747 class's dictionary. If the class has a :meth:`__setattr__` or
748 :meth:`__delattr__` method, this is called instead of updating the instance
749 dictionary directly.
750
751 .. index::
752 object: numeric
753 object: sequence
754 object: mapping
755
756 Class instances can pretend to be numbers, sequences, or mappings if they have
757 methods with certain special names. See section :ref:`specialnames`.
758
759 .. index::
760 single: __dict__ (instance attribute)
761 single: __class__ (instance attribute)
762
763 Special attributes: :attr:`__dict__` is the attribute dictionary;
764 :attr:`__class__` is the instance's class.
765
766Files
767 .. index::
768 object: file
769 builtin: open
770 single: popen() (in module os)
771 single: makefile() (socket method)
772 single: sys.stdin
773 single: sys.stdout
774 single: sys.stderr
775 single: stdio
776 single: stdin (in module sys)
777 single: stdout (in module sys)
778 single: stderr (in module sys)
779
780 A file object represents an open file. File objects are created by the
781 :func:`open` built-in function, and also by :func:`os.popen`,
782 :func:`os.fdopen`, and the :meth:`makefile` method of socket objects (and
783 perhaps by other functions or methods provided by extension modules). The
784 objects ``sys.stdin``, ``sys.stdout`` and ``sys.stderr`` are initialized to
785 file objects corresponding to the interpreter's standard input, output and
786 error streams. See :ref:`bltin-file-objects` for complete documentation of
787 file objects.
788
789Internal types
790 .. index::
791 single: internal type
792 single: types, internal
793
794 A few types used internally by the interpreter are exposed to the user. Their
795 definitions may change with future versions of the interpreter, but they are
796 mentioned here for completeness.
797
798 Code objects
799 .. index::
800 single: bytecode
801 object: code
802
Georg Brandl9afde1c2007-11-01 20:32:30 +0000803 Code objects represent *byte-compiled* executable Python code, or :term:`bytecode`.
Georg Brandl116aa622007-08-15 14:28:22 +0000804 The difference between a code object and a function object is that the function
805 object contains an explicit reference to the function's globals (the module in
806 which it was defined), while a code object contains no context; also the default
807 argument values are stored in the function object, not in the code object
808 (because they represent values calculated at run-time). Unlike function
809 objects, code objects are immutable and contain no references (directly or
810 indirectly) to mutable objects.
811
812 Special read-only attributes: :attr:`co_name` gives the function name;
813 :attr:`co_argcount` is the number of positional arguments (including arguments
814 with default values); :attr:`co_nlocals` is the number of local variables used
815 by the function (including arguments); :attr:`co_varnames` is a tuple containing
816 the names of the local variables (starting with the argument names);
817 :attr:`co_cellvars` is a tuple containing the names of local variables that are
818 referenced by nested functions; :attr:`co_freevars` is a tuple containing the
819 names of free variables; :attr:`co_code` is a string representing the sequence
820 of bytecode instructions; :attr:`co_consts` is a tuple containing the literals
821 used by the bytecode; :attr:`co_names` is a tuple containing the names used by
822 the bytecode; :attr:`co_filename` is the filename from which the code was
823 compiled; :attr:`co_firstlineno` is the first line number of the function;
Georg Brandl9afde1c2007-11-01 20:32:30 +0000824 :attr:`co_lnotab` is a string encoding the mapping from bytecode offsets to
Georg Brandl116aa622007-08-15 14:28:22 +0000825 line numbers (for details see the source code of the interpreter);
826 :attr:`co_stacksize` is the required stack size (including local variables);
827 :attr:`co_flags` is an integer encoding a number of flags for the interpreter.
828
829 .. index::
830 single: co_argcount (code object attribute)
831 single: co_code (code object attribute)
832 single: co_consts (code object attribute)
833 single: co_filename (code object attribute)
834 single: co_firstlineno (code object attribute)
835 single: co_flags (code object attribute)
836 single: co_lnotab (code object attribute)
837 single: co_name (code object attribute)
838 single: co_names (code object attribute)
839 single: co_nlocals (code object attribute)
840 single: co_stacksize (code object attribute)
841 single: co_varnames (code object attribute)
842 single: co_cellvars (code object attribute)
843 single: co_freevars (code object attribute)
844
845 .. index:: object: generator
846
847 The following flag bits are defined for :attr:`co_flags`: bit ``0x04`` is set if
848 the function uses the ``*arguments`` syntax to accept an arbitrary number of
849 positional arguments; bit ``0x08`` is set if the function uses the
850 ``**keywords`` syntax to accept arbitrary keyword arguments; bit ``0x20`` is set
851 if the function is a generator.
852
853 Future feature declarations (``from __future__ import division``) also use bits
854 in :attr:`co_flags` to indicate whether a code object was compiled with a
855 particular feature enabled: bit ``0x2000`` is set if the function was compiled
856 with future division enabled; bits ``0x10`` and ``0x1000`` were used in earlier
857 versions of Python.
858
859 Other bits in :attr:`co_flags` are reserved for internal use.
860
861 .. index:: single: documentation string
862
863 If a code object represents a function, the first item in :attr:`co_consts` is
864 the documentation string of the function, or ``None`` if undefined.
865
866 Frame objects
867 .. index:: object: frame
868
869 Frame objects represent execution frames. They may occur in traceback objects
870 (see below).
871
872 .. index::
873 single: f_back (frame attribute)
874 single: f_code (frame attribute)
875 single: f_globals (frame attribute)
876 single: f_locals (frame attribute)
877 single: f_lasti (frame attribute)
878 single: f_builtins (frame attribute)
879
880 Special read-only attributes: :attr:`f_back` is to the previous stack frame
881 (towards the caller), or ``None`` if this is the bottom stack frame;
882 :attr:`f_code` is the code object being executed in this frame; :attr:`f_locals`
883 is the dictionary used to look up local variables; :attr:`f_globals` is used for
884 global variables; :attr:`f_builtins` is used for built-in (intrinsic) names;
885 :attr:`f_lasti` gives the precise instruction (this is an index into the
886 bytecode string of the code object).
887
888 .. index::
889 single: f_trace (frame attribute)
Georg Brandl116aa622007-08-15 14:28:22 +0000890 single: f_lineno (frame attribute)
891
892 Special writable attributes: :attr:`f_trace`, if not ``None``, is a function
893 called at the start of each source code line (this is used by the debugger);
Benjamin Petersoneec3d712008-06-11 15:59:43 +0000894 :attr:`f_lineno` is the current line number of the frame --- writing to this
895 from within a trace function jumps to the given line (only for the bottom-most
896 frame). A debugger can implement a Jump command (aka Set Next Statement)
897 by writing to f_lineno.
Georg Brandl116aa622007-08-15 14:28:22 +0000898
899 Traceback objects
900 .. index::
901 object: traceback
902 pair: stack; trace
903 pair: exception; handler
904 pair: execution; stack
905 single: exc_info (in module sys)
Georg Brandl116aa622007-08-15 14:28:22 +0000906 single: last_traceback (in module sys)
907 single: sys.exc_info
908 single: sys.last_traceback
909
910 Traceback objects represent a stack trace of an exception. A traceback object
911 is created when an exception occurs. When the search for an exception handler
912 unwinds the execution stack, at each unwound level a traceback object is
913 inserted in front of the current traceback. When an exception handler is
914 entered, the stack trace is made available to the program. (See section
915 :ref:`try`.) It is accessible as the third item of the
916 tuple returned by ``sys.exc_info()``. When the program contains no suitable
917 handler, the stack trace is written (nicely formatted) to the standard error
918 stream; if the interpreter is interactive, it is also made available to the user
919 as ``sys.last_traceback``.
920
921 .. index::
922 single: tb_next (traceback attribute)
923 single: tb_frame (traceback attribute)
924 single: tb_lineno (traceback attribute)
925 single: tb_lasti (traceback attribute)
926 statement: try
927
928 Special read-only attributes: :attr:`tb_next` is the next level in the stack
929 trace (towards the frame where the exception occurred), or ``None`` if there is
930 no next level; :attr:`tb_frame` points to the execution frame of the current
931 level; :attr:`tb_lineno` gives the line number where the exception occurred;
932 :attr:`tb_lasti` indicates the precise instruction. The line number and last
933 instruction in the traceback may differ from the line number of its frame object
934 if the exception occurred in a :keyword:`try` statement with no matching except
935 clause or with a finally clause.
936
937 Slice objects
938 .. index:: builtin: slice
939
Georg Brandlcb8ecb12007-09-04 06:35:14 +0000940 Slice objects are used to represent slices for :meth:`__getitem__`
941 methods. They are also created by the built-in :func:`slice` function.
Georg Brandl116aa622007-08-15 14:28:22 +0000942
943 .. index::
944 single: start (slice object attribute)
945 single: stop (slice object attribute)
946 single: step (slice object attribute)
947
948 Special read-only attributes: :attr:`start` is the lower bound; :attr:`stop` is
949 the upper bound; :attr:`step` is the step value; each is ``None`` if omitted.
950 These attributes can have any type.
951
952 Slice objects support one method:
953
Georg Brandl116aa622007-08-15 14:28:22 +0000954 .. method:: slice.indices(self, length)
955
Georg Brandlcb8ecb12007-09-04 06:35:14 +0000956 This method takes a single integer argument *length* and computes
957 information about the slice that the slice object would describe if
958 applied to a sequence of *length* items. It returns a tuple of three
959 integers; respectively these are the *start* and *stop* indices and the
960 *step* or stride length of the slice. Missing or out-of-bounds indices
961 are handled in a manner consistent with regular slices.
Georg Brandl116aa622007-08-15 14:28:22 +0000962
Georg Brandl116aa622007-08-15 14:28:22 +0000963 Static method objects
964 Static method objects provide a way of defeating the transformation of function
965 objects to method objects described above. A static method object is a wrapper
966 around any other object, usually a user-defined method object. When a static
967 method object is retrieved from a class or a class instance, the object actually
968 returned is the wrapped object, which is not subject to any further
969 transformation. Static method objects are not themselves callable, although the
970 objects they wrap usually are. Static method objects are created by the built-in
971 :func:`staticmethod` constructor.
972
973 Class method objects
974 A class method object, like a static method object, is a wrapper around another
975 object that alters the way in which that object is retrieved from classes and
976 class instances. The behaviour of class method objects upon such retrieval is
977 described above, under "User-defined methods". Class method objects are created
978 by the built-in :func:`classmethod` constructor.
979
Georg Brandl116aa622007-08-15 14:28:22 +0000980
Georg Brandl116aa622007-08-15 14:28:22 +0000981.. _specialnames:
982
983Special method names
984====================
985
986.. index::
987 pair: operator; overloading
988 single: __getitem__() (mapping object method)
989
990A class can implement certain operations that are invoked by special syntax
991(such as arithmetic operations or subscripting and slicing) by defining methods
992with special names. This is Python's approach to :dfn:`operator overloading`,
993allowing classes to define their own behavior with respect to language
994operators. For instance, if a class defines a method named :meth:`__getitem__`,
Nick Coghlan3a5d7e32008-08-31 12:40:14 +0000995and ``x`` is an instance of this class, then ``x[i]`` is roughly equivalent
996to ``type(x).__getitem__(x, i)``. Except where mentioned, attempts to execute an
997operation raise an exception when no appropriate method is defined (typically
998:exc:`AttributeError` or :exc:`TypeError`).
Georg Brandl65ea9bd2007-09-05 13:36:27 +0000999
Georg Brandl116aa622007-08-15 14:28:22 +00001000When implementing a class that emulates any built-in type, it is important that
1001the emulation only be implemented to the degree that it makes sense for the
1002object being modelled. For example, some sequences may work well with retrieval
1003of individual elements, but extracting a slice may not make sense. (One example
1004of this is the :class:`NodeList` interface in the W3C's Document Object Model.)
1005
1006
1007.. _customization:
1008
1009Basic customization
1010-------------------
1011
1012
1013.. method:: object.__new__(cls[, ...])
1014
1015 Called to create a new instance of class *cls*. :meth:`__new__` is a static
1016 method (special-cased so you need not declare it as such) that takes the class
1017 of which an instance was requested as its first argument. The remaining
1018 arguments are those passed to the object constructor expression (the call to the
1019 class). The return value of :meth:`__new__` should be the new object instance
1020 (usually an instance of *cls*).
1021
1022 Typical implementations create a new instance of the class by invoking the
1023 superclass's :meth:`__new__` method using ``super(currentclass,
1024 cls).__new__(cls[, ...])`` with appropriate arguments and then modifying the
1025 newly-created instance as necessary before returning it.
1026
1027 If :meth:`__new__` returns an instance of *cls*, then the new instance's
1028 :meth:`__init__` method will be invoked like ``__init__(self[, ...])``, where
1029 *self* is the new instance and the remaining arguments are the same as were
1030 passed to :meth:`__new__`.
1031
1032 If :meth:`__new__` does not return an instance of *cls*, then the new instance's
1033 :meth:`__init__` method will not be invoked.
1034
1035 :meth:`__new__` is intended mainly to allow subclasses of immutable types (like
Christian Heimes790c8232008-01-07 21:14:23 +00001036 int, str, or tuple) to customize instance creation. It is also commonly
1037 overridden in custom metaclasses in order to customize class creation.
Georg Brandl116aa622007-08-15 14:28:22 +00001038
1039
1040.. method:: object.__init__(self[, ...])
1041
1042 .. index:: pair: class; constructor
1043
1044 Called when the instance is created. The arguments are those passed to the
1045 class constructor expression. If a base class has an :meth:`__init__` method,
1046 the derived class's :meth:`__init__` method, if any, must explicitly call it to
1047 ensure proper initialization of the base class part of the instance; for
1048 example: ``BaseClass.__init__(self, [args...])``. As a special constraint on
1049 constructors, no value may be returned; doing so will cause a :exc:`TypeError`
1050 to be raised at runtime.
1051
1052
1053.. method:: object.__del__(self)
1054
1055 .. index::
1056 single: destructor
1057 statement: del
1058
1059 Called when the instance is about to be destroyed. This is also called a
1060 destructor. If a base class has a :meth:`__del__` method, the derived class's
1061 :meth:`__del__` method, if any, must explicitly call it to ensure proper
1062 deletion of the base class part of the instance. Note that it is possible
1063 (though not recommended!) for the :meth:`__del__` method to postpone destruction
1064 of the instance by creating a new reference to it. It may then be called at a
1065 later time when this new reference is deleted. It is not guaranteed that
1066 :meth:`__del__` methods are called for objects that still exist when the
1067 interpreter exits.
1068
1069 .. note::
1070
1071 ``del x`` doesn't directly call ``x.__del__()`` --- the former decrements
1072 the reference count for ``x`` by one, and the latter is only called when
1073 ``x``'s reference count reaches zero. Some common situations that may
1074 prevent the reference count of an object from going to zero include:
1075 circular references between objects (e.g., a doubly-linked list or a tree
1076 data structure with parent and child pointers); a reference to the object
1077 on the stack frame of a function that caught an exception (the traceback
1078 stored in ``sys.exc_info()[2]`` keeps the stack frame alive); or a
1079 reference to the object on the stack frame that raised an unhandled
1080 exception in interactive mode (the traceback stored in
1081 ``sys.last_traceback`` keeps the stack frame alive). The first situation
1082 can only be remedied by explicitly breaking the cycles; the latter two
1083 situations can be resolved by storing ``None`` in ``sys.last_traceback``.
1084 Circular references which are garbage are detected when the option cycle
1085 detector is enabled (it's on by default), but can only be cleaned up if
1086 there are no Python- level :meth:`__del__` methods involved. Refer to the
1087 documentation for the :mod:`gc` module for more information about how
1088 :meth:`__del__` methods are handled by the cycle detector, particularly
1089 the description of the ``garbage`` value.
1090
1091 .. warning::
1092
1093 Due to the precarious circumstances under which :meth:`__del__` methods are
1094 invoked, exceptions that occur during their execution are ignored, and a warning
1095 is printed to ``sys.stderr`` instead. Also, when :meth:`__del__` is invoked in
1096 response to a module being deleted (e.g., when execution of the program is
1097 done), other globals referenced by the :meth:`__del__` method may already have
1098 been deleted. For this reason, :meth:`__del__` methods should do the absolute
1099 minimum needed to maintain external invariants. Starting with version 1.5,
1100 Python guarantees that globals whose name begins with a single underscore are
1101 deleted from their module before other globals are deleted; if no other
1102 references to such globals exist, this may help in assuring that imported
1103 modules are still available at the time when the :meth:`__del__` method is
1104 called.
1105
1106
1107.. method:: object.__repr__(self)
1108
1109 .. index:: builtin: repr
1110
1111 Called by the :func:`repr` built-in function and by string conversions (reverse
1112 quotes) to compute the "official" string representation of an object. If at all
1113 possible, this should look like a valid Python expression that could be used to
1114 recreate an object with the same value (given an appropriate environment). If
1115 this is not possible, a string of the form ``<...some useful description...>``
1116 should be returned. The return value must be a string object. If a class
1117 defines :meth:`__repr__` but not :meth:`__str__`, then :meth:`__repr__` is also
1118 used when an "informal" string representation of instances of that class is
1119 required.
1120
Georg Brandl116aa622007-08-15 14:28:22 +00001121 This is typically used for debugging, so it is important that the representation
1122 is information-rich and unambiguous.
1123
1124
1125.. method:: object.__str__(self)
1126
1127 .. index::
1128 builtin: str
Georg Brandl4b491312007-08-31 09:22:56 +00001129 builtin: print
Georg Brandl116aa622007-08-15 14:28:22 +00001130
Georg Brandldcc56f82007-08-31 16:41:12 +00001131 Called by the :func:`str` built-in function and by the :func:`print` function
1132 to compute the "informal" string representation of an object. This differs
1133 from :meth:`__repr__` in that it does not have to be a valid Python
Georg Brandl116aa622007-08-15 14:28:22 +00001134 expression: a more convenient or concise representation may be used instead.
1135 The return value must be a string object.
1136
Georg Brandldcc56f82007-08-31 16:41:12 +00001137 .. XXX what about subclasses of string?
1138
Georg Brandl116aa622007-08-15 14:28:22 +00001139
Georg Brandl4b491312007-08-31 09:22:56 +00001140.. method:: object.__format__(self, format_spec)
1141
1142 .. index::
1143 pair: string; conversion
1144 builtin: str
1145 builtin: print
1146
1147 Called by the :func:`format` built-in function (and by extension, the
1148 :meth:`format` method of class :class:`str`) to produce a "formatted"
1149 string representation of an object. The ``format_spec`` argument is
1150 a string that contains a description of the formatting options desired.
1151 The interpretation of the ``format_spec`` argument is up to the type
1152 implementing :meth:`__format__`, however most classes will either
1153 delegate formatting to one of the built-in types, or use a similar
1154 formatting option syntax.
1155
1156 See :ref:`formatspec` for a description of the standard formatting syntax.
1157
1158 The return value must be a string object.
1159
1160
Georg Brandl116aa622007-08-15 14:28:22 +00001161.. method:: object.__lt__(self, other)
1162 object.__le__(self, other)
1163 object.__eq__(self, other)
1164 object.__ne__(self, other)
1165 object.__gt__(self, other)
1166 object.__ge__(self, other)
1167
Guido van Rossum2cc30da2007-11-02 23:46:40 +00001168 .. index::
1169 single: comparisons
1170
Georg Brandl116aa622007-08-15 14:28:22 +00001171 These are the so-called "rich comparison" methods, and are called for comparison
1172 operators in preference to :meth:`__cmp__` below. The correspondence between
1173 operator symbols and method names is as follows: ``x<y`` calls ``x.__lt__(y)``,
1174 ``x<=y`` calls ``x.__le__(y)``, ``x==y`` calls ``x.__eq__(y)``, ``x!=y`` calls
1175 ``x.__ne__(y)``, ``x>y`` calls ``x.__gt__(y)``, and ``x>=y`` calls
1176 ``x.__ge__(y)``.
1177
1178 A rich comparison method may return the singleton ``NotImplemented`` if it does
1179 not implement the operation for a given pair of arguments. By convention,
1180 ``False`` and ``True`` are returned for a successful comparison. However, these
1181 methods can return any value, so if the comparison operator is used in a Boolean
1182 context (e.g., in the condition of an ``if`` statement), Python will call
1183 :func:`bool` on the value to determine if the result is true or false.
1184
Guido van Rossum2cc30da2007-11-02 23:46:40 +00001185 There are no implied relationships among the comparison operators. The truth
1186 of ``x==y`` does not imply that ``x!=y`` is false. Accordingly, when
1187 defining :meth:`__eq__`, one should also define :meth:`__ne__` so that the
1188 operators will behave as expected. See the paragraph on :meth:`__hash__` for
1189 some important notes on creating :term:`hashable` objects which support
1190 custom comparison operations and are usable as dictionary keys.
Georg Brandl116aa622007-08-15 14:28:22 +00001191
Guido van Rossum2cc30da2007-11-02 23:46:40 +00001192 There are no swapped-argument versions of these methods (to be used when the
1193 left argument does not support the operation but the right argument does);
1194 rather, :meth:`__lt__` and :meth:`__gt__` are each other's reflection,
Georg Brandl116aa622007-08-15 14:28:22 +00001195 :meth:`__le__` and :meth:`__ge__` are each other's reflection, and
1196 :meth:`__eq__` and :meth:`__ne__` are their own reflection.
1197
1198 Arguments to rich comparison methods are never coerced.
1199
1200
1201.. method:: object.__cmp__(self, other)
1202
1203 .. index::
1204 builtin: cmp
1205 single: comparisons
1206
Guido van Rossum2cc30da2007-11-02 23:46:40 +00001207 Called by comparison operations if rich comparison (see above) is not
1208 defined. Should return a negative integer if ``self < other``, zero if
1209 ``self == other``, a positive integer if ``self > other``. If no
1210 :meth:`__cmp__`, :meth:`__eq__` or :meth:`__ne__` operation is defined, class
1211 instances are compared by object identity ("address"). See also the
1212 description of :meth:`__hash__` for some important notes on creating
1213 :term:`hashable` objects which support custom comparison operations and are
Georg Brandldb629672007-11-03 08:44:43 +00001214 usable as dictionary keys.
Georg Brandl116aa622007-08-15 14:28:22 +00001215
1216
Georg Brandl116aa622007-08-15 14:28:22 +00001217.. method:: object.__hash__(self)
1218
1219 .. index::
1220 object: dictionary
1221 builtin: hash
Georg Brandl16174572007-09-01 12:38:06 +00001222 single: __cmp__() (object method)
Georg Brandl116aa622007-08-15 14:28:22 +00001223
Guido van Rossum2cc30da2007-11-02 23:46:40 +00001224 Called for the key object for dictionary operations, and by the built-in
1225 function :func:`hash`. Should return an integer usable as a hash value
Georg Brandl116aa622007-08-15 14:28:22 +00001226 for dictionary operations. The only required property is that objects which
1227 compare equal have the same hash value; it is advised to somehow mix together
1228 (e.g., using exclusive or) the hash values for the components of the object that
Guido van Rossum2cc30da2007-11-02 23:46:40 +00001229 also play a part in comparison of objects.
Georg Brandl116aa622007-08-15 14:28:22 +00001230
Georg Brandldb629672007-11-03 08:44:43 +00001231 If a class does not define a :meth:`__cmp__` or :meth:`__eq__` method it
1232 should not define a :meth:`__hash__` operation either; if it defines
1233 :meth:`__cmp__` or :meth:`__eq__` but not :meth:`__hash__`, its instances
1234 will not be usable as dictionary keys. If a class defines mutable objects
1235 and implements a :meth:`__cmp__` or :meth:`__eq__` method, it should not
1236 implement :meth:`__hash__`, since the dictionary implementation requires that
1237 a key's hash value is immutable (if the object's hash value changes, it will
1238 be in the wrong hash bucket).
1239
1240 User-defined classes have :meth:`__cmp__` and :meth:`__hash__` methods
Nick Coghlan73c96db2008-08-31 13:21:24 +00001241 by default; with them, all objects compare unequal (except with themselves)
1242 and ``x.__hash__()`` returns ``id(x)``.
Georg Brandl116aa622007-08-15 14:28:22 +00001243
Nick Coghlan73c96db2008-08-31 13:21:24 +00001244 Classes which inherit a :meth:`__hash__` method from a parent class but
1245 change the meaning of :meth:`__cmp__` or :meth:`__eq__` such that the hash
1246 value returned is no longer appropriate (e.g. by switching to a value-based
1247 concept of equality instead of the default identity based equality) can
1248 explicitly flag themselves as being unhashable by setting
1249 ``__hash__ = None`` in the class definition. Doing so means that not only
1250 will instances of the class raise an appropriate :exc:`TypeError` when
1251 a program attempts to retrieve their hash value, but they will also be
1252 correctly identified as unhashable when checking
1253 ``isinstance(obj, collections.Hashable)`` (unlike classes which define
1254 their own :meth:`__hash__` to explicitly raise :exc:`TypeError`).
1255
1256 If a class that overrrides :meth:`__cmp__` or :meth:`__eq__` needs to
1257 retain the implementation of :meth:`__hash__` from a parent class,
1258 the interpreter must be told this explicitly by setting
1259 ``__hash__ = <ParentClass>.__hash__``. Otherwise the inheritance of
1260 :meth:`__hash__` will be blocked, just as if :attr:`__hash__` had been
1261 explicitly set to :const:`None`.
Georg Brandl116aa622007-08-15 14:28:22 +00001262
1263.. method:: object.__bool__(self)
Georg Brandl1aeaadd2008-09-06 17:42:52 +00001264
Georg Brandl116aa622007-08-15 14:28:22 +00001265 .. index:: single: __len__() (mapping object method)
1266
1267 Called to implement truth value testing, and the built-in operation ``bool()``;
1268 should return ``False`` or ``True``. When this method is not defined,
1269 :meth:`__len__` is called, if it is defined (see below) and ``True`` is returned
1270 when the length is not zero. If a class defines neither :meth:`__len__` nor
1271 :meth:`__bool__`, all its instances are considered true.
1272
1273
Georg Brandl116aa622007-08-15 14:28:22 +00001274.. _attribute-access:
1275
1276Customizing attribute access
1277----------------------------
1278
1279The following methods can be defined to customize the meaning of attribute
1280access (use of, assignment to, or deletion of ``x.name``) for class instances.
1281
Georg Brandl85eb8c12007-08-31 16:33:38 +00001282.. XXX explain how descriptors interfere here!
1283
Georg Brandl116aa622007-08-15 14:28:22 +00001284
1285.. method:: object.__getattr__(self, name)
1286
1287 Called when an attribute lookup has not found the attribute in the usual places
1288 (i.e. it is not an instance attribute nor is it found in the class tree for
1289 ``self``). ``name`` is the attribute name. This method should return the
1290 (computed) attribute value or raise an :exc:`AttributeError` exception.
1291
Georg Brandl116aa622007-08-15 14:28:22 +00001292 Note that if the attribute is found through the normal mechanism,
1293 :meth:`__getattr__` is not called. (This is an intentional asymmetry between
1294 :meth:`__getattr__` and :meth:`__setattr__`.) This is done both for efficiency
Nick Coghlan3a5d7e32008-08-31 12:40:14 +00001295 reasons and because otherwise :meth:`__getattr__` would have no way to access
Georg Brandl116aa622007-08-15 14:28:22 +00001296 other attributes of the instance. Note that at least for instance variables,
1297 you can fake total control by not inserting any values in the instance attribute
1298 dictionary (but instead inserting them in another object). See the
Georg Brandl85eb8c12007-08-31 16:33:38 +00001299 :meth:`__getattribute__` method below for a way to actually get total control
1300 over attribute access.
Georg Brandl116aa622007-08-15 14:28:22 +00001301
1302
1303.. method:: object.__getattribute__(self, name)
1304
1305 Called unconditionally to implement attribute accesses for instances of the
1306 class. If the class also defines :meth:`__getattr__`, the latter will not be
1307 called unless :meth:`__getattribute__` either calls it explicitly or raises an
1308 :exc:`AttributeError`. This method should return the (computed) attribute value
1309 or raise an :exc:`AttributeError` exception. In order to avoid infinite
1310 recursion in this method, its implementation should always call the base class
1311 method with the same name to access any attributes it needs, for example,
1312 ``object.__getattribute__(self, name)``.
1313
Nick Coghlan3a5d7e32008-08-31 12:40:14 +00001314 .. note::
1315
1316 This method may still be bypassed when looking up special methods as the
1317 result of implicit invocation via language syntax or builtin functions.
1318 See :ref:`special-lookup`.
1319
Georg Brandl116aa622007-08-15 14:28:22 +00001320
Georg Brandl85eb8c12007-08-31 16:33:38 +00001321.. method:: object.__setattr__(self, name, value)
1322
1323 Called when an attribute assignment is attempted. This is called instead of
1324 the normal mechanism (i.e. store the value in the instance dictionary).
1325 *name* is the attribute name, *value* is the value to be assigned to it.
1326
1327 If :meth:`__setattr__` wants to assign to an instance attribute, it should
1328 call the base class method with the same name, for example,
1329 ``object.__setattr__(self, name, value)``.
1330
1331
1332.. method:: object.__delattr__(self, name)
1333
1334 Like :meth:`__setattr__` but for attribute deletion instead of assignment. This
1335 should only be implemented if ``del obj.name`` is meaningful for the object.
1336
1337
Benjamin Peterson1cef37c2008-07-02 14:44:54 +00001338.. method:: object.__dir__(self)
1339
1340 Called when :func:`dir` is called on the object. A list must be returned.
1341
1342
Georg Brandl116aa622007-08-15 14:28:22 +00001343.. _descriptors:
1344
1345Implementing Descriptors
1346^^^^^^^^^^^^^^^^^^^^^^^^
1347
1348The following methods only apply when an instance of the class containing the
1349method (a so-called *descriptor* class) appears in the class dictionary of
Georg Brandl85eb8c12007-08-31 16:33:38 +00001350another class, known as the *owner* class. In the examples below, "the
Georg Brandl116aa622007-08-15 14:28:22 +00001351attribute" refers to the attribute whose name is the key of the property in the
Georg Brandl85eb8c12007-08-31 16:33:38 +00001352owner class' :attr:`__dict__`.
Georg Brandl116aa622007-08-15 14:28:22 +00001353
1354
1355.. method:: object.__get__(self, instance, owner)
1356
1357 Called to get the attribute of the owner class (class attribute access) or of an
1358 instance of that class (instance attribute access). *owner* is always the owner
1359 class, while *instance* is the instance that the attribute was accessed through,
1360 or ``None`` when the attribute is accessed through the *owner*. This method
1361 should return the (computed) attribute value or raise an :exc:`AttributeError`
1362 exception.
1363
1364
1365.. method:: object.__set__(self, instance, value)
1366
1367 Called to set the attribute on an instance *instance* of the owner class to a
1368 new value, *value*.
1369
1370
1371.. method:: object.__delete__(self, instance)
1372
1373 Called to delete the attribute on an instance *instance* of the owner class.
1374
1375
1376.. _descriptor-invocation:
1377
1378Invoking Descriptors
1379^^^^^^^^^^^^^^^^^^^^
1380
1381In general, a descriptor is an object attribute with "binding behavior", one
1382whose attribute access has been overridden by methods in the descriptor
1383protocol: :meth:`__get__`, :meth:`__set__`, and :meth:`__delete__`. If any of
1384those methods are defined for an object, it is said to be a descriptor.
1385
1386The default behavior for attribute access is to get, set, or delete the
1387attribute from an object's dictionary. For instance, ``a.x`` has a lookup chain
1388starting with ``a.__dict__['x']``, then ``type(a).__dict__['x']``, and
1389continuing through the base classes of ``type(a)`` excluding metaclasses.
1390
1391However, if the looked-up value is an object defining one of the descriptor
1392methods, then Python may override the default behavior and invoke the descriptor
1393method instead. Where this occurs in the precedence chain depends on which
Georg Brandl23e8db52008-04-07 19:17:06 +00001394descriptor methods were defined and how they were called.
Georg Brandl116aa622007-08-15 14:28:22 +00001395
1396The starting point for descriptor invocation is a binding, ``a.x``. How the
1397arguments are assembled depends on ``a``:
1398
1399Direct Call
1400 The simplest and least common call is when user code directly invokes a
1401 descriptor method: ``x.__get__(a)``.
1402
1403Instance Binding
Georg Brandl85eb8c12007-08-31 16:33:38 +00001404 If binding to an object instance, ``a.x`` is transformed into the call:
Georg Brandl116aa622007-08-15 14:28:22 +00001405 ``type(a).__dict__['x'].__get__(a, type(a))``.
1406
1407Class Binding
Georg Brandl85eb8c12007-08-31 16:33:38 +00001408 If binding to a class, ``A.x`` is transformed into the call:
Georg Brandl116aa622007-08-15 14:28:22 +00001409 ``A.__dict__['x'].__get__(None, A)``.
1410
1411Super Binding
1412 If ``a`` is an instance of :class:`super`, then the binding ``super(B,
1413 obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A``
1414 immediately preceding ``B`` and then invokes the descriptor with the call:
1415 ``A.__dict__['m'].__get__(obj, A)``.
1416
1417For instance bindings, the precedence of descriptor invocation depends on the
Guido van Rossum04110fb2007-08-24 16:32:05 +00001418which descriptor methods are defined. Normally, data descriptors define both
1419:meth:`__get__` and :meth:`__set__`, while non-data descriptors have just the
Georg Brandl116aa622007-08-15 14:28:22 +00001420:meth:`__get__` method. Data descriptors always override a redefinition in an
1421instance dictionary. In contrast, non-data descriptors can be overridden by
Guido van Rossum04110fb2007-08-24 16:32:05 +00001422instances. [#]_
Georg Brandl116aa622007-08-15 14:28:22 +00001423
1424Python methods (including :func:`staticmethod` and :func:`classmethod`) are
1425implemented as non-data descriptors. Accordingly, instances can redefine and
1426override methods. This allows individual instances to acquire behaviors that
1427differ from other instances of the same class.
1428
1429The :func:`property` function is implemented as a data descriptor. Accordingly,
1430instances cannot override the behavior of a property.
1431
1432
1433.. _slots:
1434
1435__slots__
1436^^^^^^^^^
1437
Georg Brandl85eb8c12007-08-31 16:33:38 +00001438By default, instances of classes have a dictionary for attribute storage. This
1439wastes space for objects having very few instance variables. The space
1440consumption can become acute when creating large numbers of instances.
Georg Brandl116aa622007-08-15 14:28:22 +00001441
Georg Brandl85eb8c12007-08-31 16:33:38 +00001442The default can be overridden by defining *__slots__* in a class definition.
1443The *__slots__* declaration takes a sequence of instance variables and reserves
1444just enough space in each instance to hold a value for each variable. Space is
1445saved because *__dict__* is not created for each instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001446
1447
Georg Brandl85eb8c12007-08-31 16:33:38 +00001448.. data:: object.__slots__
Georg Brandl116aa622007-08-15 14:28:22 +00001449
Georg Brandl85eb8c12007-08-31 16:33:38 +00001450 This class variable can be assigned a string, iterable, or sequence of
Georg Brandl23e8db52008-04-07 19:17:06 +00001451 strings with variable names used by instances. If defined in a
Georg Brandl85eb8c12007-08-31 16:33:38 +00001452 class, *__slots__* reserves space for the declared variables and prevents the
1453 automatic creation of *__dict__* and *__weakref__* for each instance.
Georg Brandl116aa622007-08-15 14:28:22 +00001454
Georg Brandl116aa622007-08-15 14:28:22 +00001455
1456Notes on using *__slots__*
Georg Brandl16174572007-09-01 12:38:06 +00001457""""""""""""""""""""""""""
Georg Brandl116aa622007-08-15 14:28:22 +00001458
Georg Brandl3dbca812008-07-23 16:10:53 +00001459* When inheriting from a class without *__slots__*, the *__dict__* attribute of
1460 that class will always be accessible, so a *__slots__* definition in the
1461 subclass is meaningless.
1462
Georg Brandl116aa622007-08-15 14:28:22 +00001463* Without a *__dict__* variable, instances cannot be assigned new variables not
1464 listed in the *__slots__* definition. Attempts to assign to an unlisted
1465 variable name raises :exc:`AttributeError`. If dynamic assignment of new
Georg Brandl85eb8c12007-08-31 16:33:38 +00001466 variables is desired, then add ``'__dict__'`` to the sequence of strings in
1467 the *__slots__* declaration.
Georg Brandl116aa622007-08-15 14:28:22 +00001468
Georg Brandl116aa622007-08-15 14:28:22 +00001469* Without a *__weakref__* variable for each instance, classes defining
1470 *__slots__* do not support weak references to its instances. If weak reference
1471 support is needed, then add ``'__weakref__'`` to the sequence of strings in the
1472 *__slots__* declaration.
1473
Georg Brandl116aa622007-08-15 14:28:22 +00001474* *__slots__* are implemented at the class level by creating descriptors
1475 (:ref:`descriptors`) for each variable name. As a result, class attributes
1476 cannot be used to set default values for instance variables defined by
1477 *__slots__*; otherwise, the class attribute would overwrite the descriptor
1478 assignment.
1479
1480* If a class defines a slot also defined in a base class, the instance variable
1481 defined by the base class slot is inaccessible (except by retrieving its
1482 descriptor directly from the base class). This renders the meaning of the
1483 program undefined. In the future, a check may be added to prevent this.
1484
1485* The action of a *__slots__* declaration is limited to the class where it is
1486 defined. As a result, subclasses will have a *__dict__* unless they also define
1487 *__slots__*.
1488
1489* *__slots__* do not work for classes derived from "variable-length" built-in
Georg Brandl5c106642007-11-29 17:41:05 +00001490 types such as :class:`int`, :class:`str` and :class:`tuple`.
Georg Brandl116aa622007-08-15 14:28:22 +00001491
1492* Any non-string iterable may be assigned to *__slots__*. Mappings may also be
1493 used; however, in the future, special meaning may be assigned to the values
1494 corresponding to each key.
1495
1496* *__class__* assignment works only if both classes have the same *__slots__*.
1497
Georg Brandl116aa622007-08-15 14:28:22 +00001498
1499.. _metaclasses:
1500
1501Customizing class creation
1502--------------------------
1503
Georg Brandl85eb8c12007-08-31 16:33:38 +00001504By default, classes are constructed using :func:`type`. A class definition is
1505read into a separate namespace and the value of class name is bound to the
1506result of ``type(name, bases, dict)``.
Georg Brandl116aa622007-08-15 14:28:22 +00001507
1508When the class definition is read, if *__metaclass__* is defined then the
Christian Heimes790c8232008-01-07 21:14:23 +00001509callable assigned to it will be called instead of :func:`type`. This allows
Georg Brandl116aa622007-08-15 14:28:22 +00001510classes or functions to be written which monitor or alter the class creation
1511process:
1512
1513* Modifying the class dictionary prior to the class being created.
1514
1515* Returning an instance of another class -- essentially performing the role of a
1516 factory function.
1517
Christian Heimes790c8232008-01-07 21:14:23 +00001518These steps will have to be performed in the metaclass's :meth:`__new__` method
1519-- :meth:`type.__new__` can then be called from this method to create a class
1520with different properties. This example adds a new element to the class
1521dictionary before creating the class::
1522
1523 class metacls(type):
1524 def __new__(mcs, name, bases, dict):
1525 dict['foo'] = 'metacls was here'
1526 return type.__new__(mcs, name, bases, dict)
1527
1528You can of course also override other class methods (or add new methods); for
1529example defining a custom :meth:`__call__` method in the metaclass allows custom
1530behavior when the class is called, e.g. not always creating a new instance.
1531
1532
Georg Brandl116aa622007-08-15 14:28:22 +00001533.. data:: __metaclass__
1534
1535 This variable can be any callable accepting arguments for ``name``, ``bases``,
1536 and ``dict``. Upon class creation, the callable is used instead of the built-in
1537 :func:`type`.
1538
Georg Brandl116aa622007-08-15 14:28:22 +00001539The appropriate metaclass is determined by the following precedence rules:
1540
1541* If ``dict['__metaclass__']`` exists, it is used.
1542
1543* Otherwise, if there is at least one base class, its metaclass is used (this
1544 looks for a *__class__* attribute first and if not found, uses its type).
1545
1546* Otherwise, if a global variable named __metaclass__ exists, it is used.
1547
Georg Brandl85eb8c12007-08-31 16:33:38 +00001548* Otherwise, the default metaclass (:class:`type`) is used.
Georg Brandl116aa622007-08-15 14:28:22 +00001549
1550The potential uses for metaclasses are boundless. Some ideas that have been
1551explored including logging, interface checking, automatic delegation, automatic
1552property creation, proxies, frameworks, and automatic resource
1553locking/synchronization.
1554
1555
1556.. _callable-types:
1557
1558Emulating callable objects
1559--------------------------
1560
1561
1562.. method:: object.__call__(self[, args...])
1563
1564 .. index:: pair: call; instance
1565
1566 Called when the instance is "called" as a function; if this method is defined,
1567 ``x(arg1, arg2, ...)`` is a shorthand for ``x.__call__(arg1, arg2, ...)``.
1568
1569
1570.. _sequence-types:
1571
1572Emulating container types
1573-------------------------
1574
1575The following methods can be defined to implement container objects. Containers
1576usually are sequences (such as lists or tuples) or mappings (like dictionaries),
1577but can represent other containers as well. The first set of methods is used
1578either to emulate a sequence or to emulate a mapping; the difference is that for
1579a sequence, the allowable keys should be the integers *k* for which ``0 <= k <
1580N`` where *N* is the length of the sequence, or slice objects, which define a
Georg Brandlcb8ecb12007-09-04 06:35:14 +00001581range of items. It is also recommended that mappings provide the methods
Georg Brandlc7723722008-05-26 17:47:11 +00001582:meth:`keys`, :meth:`values`, :meth:`items`, :meth:`get`, :meth:`clear`,
1583:meth:`setdefault`, :meth:`pop`, :meth:`popitem`, :meth:`copy`, and
Georg Brandlcb8ecb12007-09-04 06:35:14 +00001584:meth:`update` behaving similar to those for Python's standard dictionary
Georg Brandlc7723722008-05-26 17:47:11 +00001585objects. The :mod:`collections` module provides a :class:`MutableMapping`
1586abstract base class to help create those methods from a base set of
1587:meth:`__getitem__`, :meth:`__setitem__`, :meth:`__delitem__`, and :meth:`keys`.
1588Mutable sequences should provide methods :meth:`append`, :meth:`count`,
1589:meth:`index`, :meth:`extend`, :meth:`insert`, :meth:`pop`, :meth:`remove`,
1590:meth:`reverse` and :meth:`sort`, like Python standard list objects. Finally,
1591sequence types should implement addition (meaning concatenation) and
1592multiplication (meaning repetition) by defining the methods :meth:`__add__`,
1593:meth:`__radd__`, :meth:`__iadd__`, :meth:`__mul__`, :meth:`__rmul__` and
1594:meth:`__imul__` described below; they should not define other numerical
1595operators. It is recommended that both mappings and sequences implement the
1596:meth:`__contains__` method to allow efficient use of the ``in`` operator; for
1597mappings, ``in`` should search the mapping's keys; for sequences, it should
1598search through the values. It is further recommended that both mappings and
1599sequences implement the :meth:`__iter__` method to allow efficient iteration
1600through the container; for mappings, :meth:`__iter__` should be the same as
Fred Drake2e748782007-09-04 17:33:11 +00001601:meth:`keys`; for sequences, it should iterate through the values.
Georg Brandl116aa622007-08-15 14:28:22 +00001602
1603.. method:: object.__len__(self)
1604
1605 .. index::
1606 builtin: len
1607 single: __bool__() (object method)
1608
1609 Called to implement the built-in function :func:`len`. Should return the length
1610 of the object, an integer ``>=`` 0. Also, an object that doesn't define a
1611 :meth:`__bool__` method and whose :meth:`__len__` method returns zero is
1612 considered to be false in a Boolean context.
1613
1614
Georg Brandlcb8ecb12007-09-04 06:35:14 +00001615.. note::
1616
1617 Slicing is done exclusively with the following three methods. A call like ::
1618
1619 a[1:2] = b
1620
1621 is translated to ::
1622
1623 a[slice(1, 2, None)] = b
1624
1625 and so forth. Missing slice items are always filled in with ``None``.
1626
1627
Georg Brandl116aa622007-08-15 14:28:22 +00001628.. method:: object.__getitem__(self, key)
1629
1630 .. index:: object: slice
1631
1632 Called to implement evaluation of ``self[key]``. For sequence types, the
1633 accepted keys should be integers and slice objects. Note that the special
1634 interpretation of negative indexes (if the class wishes to emulate a sequence
1635 type) is up to the :meth:`__getitem__` method. If *key* is of an inappropriate
1636 type, :exc:`TypeError` may be raised; if of a value outside the set of indexes
1637 for the sequence (after any special interpretation of negative values),
1638 :exc:`IndexError` should be raised. For mapping types, if *key* is missing (not
1639 in the container), :exc:`KeyError` should be raised.
1640
1641 .. note::
1642
1643 :keyword:`for` loops expect that an :exc:`IndexError` will be raised for illegal
1644 indexes to allow proper detection of the end of the sequence.
1645
1646
1647.. method:: object.__setitem__(self, key, value)
1648
1649 Called to implement assignment to ``self[key]``. Same note as for
1650 :meth:`__getitem__`. This should only be implemented for mappings if the
1651 objects support changes to the values for keys, or if new keys can be added, or
1652 for sequences if elements can be replaced. The same exceptions should be raised
1653 for improper *key* values as for the :meth:`__getitem__` method.
1654
1655
1656.. method:: object.__delitem__(self, key)
1657
1658 Called to implement deletion of ``self[key]``. Same note as for
1659 :meth:`__getitem__`. This should only be implemented for mappings if the
1660 objects support removal of keys, or for sequences if elements can be removed
1661 from the sequence. The same exceptions should be raised for improper *key*
1662 values as for the :meth:`__getitem__` method.
1663
1664
1665.. method:: object.__iter__(self)
1666
1667 This method is called when an iterator is required for a container. This method
1668 should return a new iterator object that can iterate over all the objects in the
1669 container. For mappings, it should iterate over the keys of the container, and
Fred Drake2e748782007-09-04 17:33:11 +00001670 should also be made available as the method :meth:`keys`.
Georg Brandl116aa622007-08-15 14:28:22 +00001671
1672 Iterator objects also need to implement this method; they are required to return
1673 themselves. For more information on iterator objects, see :ref:`typeiter`.
1674
Christian Heimes7f044312008-01-06 17:05:40 +00001675
1676.. method:: object.__reversed__(self)
1677
1678 Called (if present) by the :func:`reversed` builtin to implement
1679 reverse iteration. It should return a new iterator object that iterates
1680 over all the objects in the container in reverse order.
1681
1682 If the :meth:`__reversed__` method is not provided, the
1683 :func:`reversed` builtin will fall back to using the sequence protocol
1684 (:meth:`__len__` and :meth:`__getitem__`). Objects should normally
1685 only provide :meth:`__reversed__` if they do not support the sequence
1686 protocol and an efficient implementation of reverse iteration is possible.
1687
1688
Georg Brandl116aa622007-08-15 14:28:22 +00001689The membership test operators (:keyword:`in` and :keyword:`not in`) are normally
1690implemented as an iteration through a sequence. However, container objects can
1691supply the following special method with a more efficient implementation, which
1692also does not require the object be a sequence.
1693
1694
1695.. method:: object.__contains__(self, item)
1696
1697 Called to implement membership test operators. Should return true if *item* is
1698 in *self*, false otherwise. For mapping objects, this should consider the keys
1699 of the mapping rather than the values or the key-item pairs.
1700
1701
Georg Brandl116aa622007-08-15 14:28:22 +00001702.. _numeric-types:
1703
1704Emulating numeric types
1705-----------------------
1706
1707The following methods can be defined to emulate numeric objects. Methods
1708corresponding to operations that are not supported by the particular kind of
1709number implemented (e.g., bitwise operations for non-integral numbers) should be
1710left undefined.
1711
1712
1713.. method:: object.__add__(self, other)
1714 object.__sub__(self, other)
1715 object.__mul__(self, other)
Georg Brandlae55dc02008-09-06 17:43:49 +00001716 object.__truediv__(self, other)
Georg Brandl116aa622007-08-15 14:28:22 +00001717 object.__floordiv__(self, other)
1718 object.__mod__(self, other)
1719 object.__divmod__(self, other)
1720 object.__pow__(self, other[, modulo])
1721 object.__lshift__(self, other)
1722 object.__rshift__(self, other)
1723 object.__and__(self, other)
1724 object.__xor__(self, other)
1725 object.__or__(self, other)
1726
1727 .. index::
1728 builtin: divmod
1729 builtin: pow
1730 builtin: pow
1731
1732 These methods are called to implement the binary arithmetic operations (``+``,
Georg Brandlae55dc02008-09-06 17:43:49 +00001733 ``-``, ``*``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, ``**``, ``<<``,
Georg Brandl116aa622007-08-15 14:28:22 +00001734 ``>>``, ``&``, ``^``, ``|``). For instance, to evaluate the expression
Brett Cannon3a954da2008-08-14 05:59:39 +00001735 ``x + y``, where *x* is an instance of a class that has an :meth:`__add__`
Georg Brandl116aa622007-08-15 14:28:22 +00001736 method, ``x.__add__(y)`` is called. The :meth:`__divmod__` method should be the
1737 equivalent to using :meth:`__floordiv__` and :meth:`__mod__`; it should not be
Georg Brandlae55dc02008-09-06 17:43:49 +00001738 related to :meth:`__truediv__`. Note that :meth:`__pow__` should be defined
1739 to accept an optional third argument if the ternary version of the built-in
1740 :func:`pow` function is to be supported.
Georg Brandl116aa622007-08-15 14:28:22 +00001741
1742 If one of those methods does not support the operation with the supplied
1743 arguments, it should return ``NotImplemented``.
1744
1745
Georg Brandl116aa622007-08-15 14:28:22 +00001746.. method:: object.__radd__(self, other)
1747 object.__rsub__(self, other)
1748 object.__rmul__(self, other)
Georg Brandl116aa622007-08-15 14:28:22 +00001749 object.__rtruediv__(self, other)
1750 object.__rfloordiv__(self, other)
1751 object.__rmod__(self, other)
1752 object.__rdivmod__(self, other)
1753 object.__rpow__(self, other)
1754 object.__rlshift__(self, other)
1755 object.__rrshift__(self, other)
1756 object.__rand__(self, other)
1757 object.__rxor__(self, other)
1758 object.__ror__(self, other)
1759
1760 .. index::
1761 builtin: divmod
1762 builtin: pow
1763
1764 These methods are called to implement the binary arithmetic operations (``+``,
Georg Brandlae55dc02008-09-06 17:43:49 +00001765 ``-``, ``*``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, ``**``,
1766 ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) operands.
1767 These functions are only called if the left operand does not support the
1768 corresponding operation and the operands are of different types. [#]_ For
1769 instance, to evaluate the expression ``x - y``, where *y* is an instance of
1770 a class that has an :meth:`__rsub__` method, ``y.__rsub__(x)`` is called if
1771 ``x.__sub__(y)`` returns *NotImplemented*.
Georg Brandl116aa622007-08-15 14:28:22 +00001772
1773 .. index:: builtin: pow
1774
1775 Note that ternary :func:`pow` will not try calling :meth:`__rpow__` (the
1776 coercion rules would become too complicated).
1777
1778 .. note::
1779
1780 If the right operand's type is a subclass of the left operand's type and that
1781 subclass provides the reflected method for the operation, this method will be
1782 called before the left operand's non-reflected method. This behavior allows
1783 subclasses to override their ancestors' operations.
1784
1785
1786.. method:: object.__iadd__(self, other)
1787 object.__isub__(self, other)
1788 object.__imul__(self, other)
Georg Brandl116aa622007-08-15 14:28:22 +00001789 object.__itruediv__(self, other)
1790 object.__ifloordiv__(self, other)
1791 object.__imod__(self, other)
1792 object.__ipow__(self, other[, modulo])
1793 object.__ilshift__(self, other)
1794 object.__irshift__(self, other)
1795 object.__iand__(self, other)
1796 object.__ixor__(self, other)
1797 object.__ior__(self, other)
1798
1799 These methods are called to implement the augmented arithmetic operations
1800 (``+=``, ``-=``, ``*=``, ``/=``, ``//=``, ``%=``, ``**=``, ``<<=``, ``>>=``,
1801 ``&=``, ``^=``, ``|=``). These methods should attempt to do the operation
1802 in-place (modifying *self*) and return the result (which could be, but does
1803 not have to be, *self*). If a specific method is not defined, the augmented
1804 operation falls back to the normal methods. For instance, to evaluate the
Brett Cannon3a954da2008-08-14 05:59:39 +00001805 expression ``x += y``, where *x* is an instance of a class that has an
Georg Brandl116aa622007-08-15 14:28:22 +00001806 :meth:`__iadd__` method, ``x.__iadd__(y)`` is called. If *x* is an instance
1807 of a class that does not define a :meth:`__iadd__` method, ``x.__add__(y)``
Brett Cannon3a954da2008-08-14 05:59:39 +00001808 and ``y.__radd__(x)`` are considered, as with the evaluation of ``x + y``.
Georg Brandl116aa622007-08-15 14:28:22 +00001809
1810
1811.. method:: object.__neg__(self)
1812 object.__pos__(self)
1813 object.__abs__(self)
1814 object.__invert__(self)
1815
1816 .. index:: builtin: abs
1817
1818 Called to implement the unary arithmetic operations (``-``, ``+``, :func:`abs`
1819 and ``~``).
1820
1821
1822.. method:: object.__complex__(self)
1823 object.__int__(self)
Georg Brandl116aa622007-08-15 14:28:22 +00001824 object.__float__(self)
Mark Summerfield9557f602008-07-01 14:42:30 +00001825 object.__round__(self, [,n])
Georg Brandl116aa622007-08-15 14:28:22 +00001826
1827 .. index::
1828 builtin: complex
1829 builtin: int
Georg Brandl116aa622007-08-15 14:28:22 +00001830 builtin: float
Mark Summerfield9557f602008-07-01 14:42:30 +00001831 builtin: round
Georg Brandl116aa622007-08-15 14:28:22 +00001832
Mark Summerfield9557f602008-07-01 14:42:30 +00001833 Called to implement the built-in functions :func:`complex`,
1834 :func:`int`, :func:`float` and :func:`round`. Should return a value
1835 of the appropriate type.
Georg Brandl116aa622007-08-15 14:28:22 +00001836
1837
1838.. method:: object.__index__(self)
1839
1840 Called to implement :func:`operator.index`. Also called whenever Python needs
1841 an integer object (such as in slicing, or in the built-in :func:`bin`,
Georg Brandl5c106642007-11-29 17:41:05 +00001842 :func:`hex` and :func:`oct` functions). Must return an integer.
Georg Brandl116aa622007-08-15 14:28:22 +00001843
Georg Brandl116aa622007-08-15 14:28:22 +00001844
1845.. _context-managers:
1846
1847With Statement Context Managers
1848-------------------------------
1849
Georg Brandl116aa622007-08-15 14:28:22 +00001850A :dfn:`context manager` is an object that defines the runtime context to be
1851established when executing a :keyword:`with` statement. The context manager
1852handles the entry into, and the exit from, the desired runtime context for the
1853execution of the block of code. Context managers are normally invoked using the
1854:keyword:`with` statement (described in section :ref:`with`), but can also be
1855used by directly invoking their methods.
1856
1857.. index::
1858 statement: with
1859 single: context manager
1860
1861Typical uses of context managers include saving and restoring various kinds of
1862global state, locking and unlocking resources, closing opened files, etc.
1863
1864For more information on context managers, see :ref:`typecontextmanager`.
1865
1866
1867.. method:: object.__enter__(self)
1868
1869 Enter the runtime context related to this object. The :keyword:`with` statement
1870 will bind this method's return value to the target(s) specified in the
1871 :keyword:`as` clause of the statement, if any.
1872
1873
1874.. method:: object.__exit__(self, exc_type, exc_value, traceback)
1875
1876 Exit the runtime context related to this object. The parameters describe the
1877 exception that caused the context to be exited. If the context was exited
1878 without an exception, all three arguments will be :const:`None`.
1879
1880 If an exception is supplied, and the method wishes to suppress the exception
1881 (i.e., prevent it from being propagated), it should return a true value.
1882 Otherwise, the exception will be processed normally upon exit from this method.
1883
1884 Note that :meth:`__exit__` methods should not reraise the passed-in exception;
1885 this is the caller's responsibility.
1886
1887
1888.. seealso::
1889
1890 :pep:`0343` - The "with" statement
1891 The specification, background, and examples for the Python :keyword:`with`
1892 statement.
1893
Nick Coghlan3a5d7e32008-08-31 12:40:14 +00001894
1895.. _special-lookup:
1896
1897Special method lookup
1898---------------------
1899
1900For custom classes, implicit invocations of special methods are only guaranteed
1901to work correctly if defined on an object's type, not in the object's instance
1902dictionary. That behaviour is the reason why the following code raises an
1903exception::
1904
1905 >>> class C(object):
1906 ... pass
1907 ...
1908 >>> c = C()
1909 >>> c.__len__ = lambda: 5
1910 >>> len(c)
1911 Traceback (most recent call last):
1912 File "<stdin>", line 1, in <module>
1913 TypeError: object of type 'C' has no len()
1914
1915The rationale behind this behaviour lies with a number of special methods such
1916as :meth:`__hash__` and :meth:`__repr__` that are implemented by all objects,
1917including type objects. If the implicit lookup of these methods used the
1918conventional lookup process, they would fail when invoked on the type object
1919itself::
1920
1921 >>> 1 .__hash__() == hash(1)
1922 True
1923 >>> int.__hash__() == hash(int)
1924 Traceback (most recent call last):
1925 File "<stdin>", line 1, in <module>
1926 TypeError: descriptor '__hash__' of 'int' object needs an argument
1927
1928Incorrectly attempting to invoke an unbound method of a class in this way is
1929sometimes referred to as 'metaclass confusion', and is avoided by bypassing
1930the instance when looking up special methods::
1931
1932 >>> type(1).__hash__(1) == hash(1)
1933 True
1934 >>> type(int).__hash__(int) == hash(int)
1935 True
1936
1937In addition to bypassing any instance attributes in the interest of
1938correctness, implicit special method lookup may also bypass the
1939:meth:`__getattribute__` method even of the object's metaclass::
1940
1941 >>> class Meta(type):
1942 ... def __getattribute__(*args):
1943 ... print "Metaclass getattribute invoked"
1944 ... return type.__getattribute__(*args)
1945 ...
1946 >>> class C(object):
1947 ... __metaclass__ = Meta
1948 ... def __len__(self):
1949 ... return 10
1950 ... def __getattribute__(*args):
1951 ... print "Class getattribute invoked"
1952 ... return object.__getattribute__(*args)
1953 ...
1954 >>> c = C()
1955 >>> c.__len__() # Explicit lookup via instance
1956 Class getattribute invoked
1957 10
1958 >>> type(c).__len__(c) # Explicit lookup via type
1959 Metaclass getattribute invoked
1960 10
1961 >>> len(c) # Implicit lookup
1962 10
1963
1964Bypassing the :meth:`__getattribute__` machinery in this fashion
1965provides significant scope for speed optimisations within the
1966interpreter, at the cost of some flexibility in the handling of
1967special methods (the special method *must* be set on the class
1968object itself in order to be consistently invoked by the interpreter).
1969
1970
Georg Brandl116aa622007-08-15 14:28:22 +00001971.. rubric:: Footnotes
1972
Nick Coghlan3a5d7e32008-08-31 12:40:14 +00001973.. [#] It *is* possible in some cases to change an object's type, under certain
1974 controlled conditions. It generally isn't a good idea though, since it can
1975 lead to some very strange behaviour if it is handled incorrectly.
1976
Guido van Rossum04110fb2007-08-24 16:32:05 +00001977.. [#] A descriptor can define any combination of :meth:`__get__`,
1978 :meth:`__set__` and :meth:`__delete__`. If it does not define :meth:`__get__`,
1979 then accessing the attribute even on an instance will return the descriptor
1980 object itself. If the descriptor defines :meth:`__set__` and/or
1981 :meth:`__delete__`, it is a data descriptor; if it defines neither, it is a
1982 non-data descriptor.
1983
Georg Brandl116aa622007-08-15 14:28:22 +00001984.. [#] For operands of the same type, it is assumed that if the non-reflected method
1985 (such as :meth:`__add__`) fails the operation is not supported, which is why the
1986 reflected method is not called.