blob: d76dc9207b386f06b1e36d92764ad7c37a2673d1 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +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
32Every object has an identity, a type and a value. An object's *identity* never
33changes once it has been created; you may think of it as the object's address in
34memory. The ':keyword:`is`' operator compares the identity of two objects; the
35:func:`id` function returns an integer representing its identity (currently
36implemented as its address). An object's :dfn:`type` is also unchangeable. [#]_
37An object's type determines the operations that the object supports (e.g., "does
38it have a length?") and also defines the possible values for objects of that
39type. The :func:`type` function returns an object's type (which is an object
40itself). The *value* of some objects can change. Objects whose value can
41change are said to be *mutable*; objects whose value is unchangeable once they
42are created are called *immutable*. (The value of an immutable container object
43that contains a reference to a mutable object can change when the latter's value
44is changed; however the container is still considered immutable, because the
45collection of objects it contains cannot be changed. So, immutability is not
46strictly the same as having an unchangeable value, it is more subtle.) An
47object's mutability is determined by its type; for instance, numbers, strings
48and tuples are immutable, while dictionaries and lists are mutable.
49
50.. index::
51 single: garbage collection
52 single: reference counting
53 single: unreachable object
54
55Objects are never explicitly destroyed; however, when they become unreachable
56they may be garbage-collected. An implementation is allowed to postpone garbage
57collection or omit it altogether --- it is a matter of implementation quality
58how garbage collection is implemented, as long as no objects are collected that
Georg Brandl6c14e582009-10-22 11:48:10 +000059are still reachable.
60
61.. impl-detail::
62
63 CPython currently uses a reference-counting scheme with (optional) delayed
64 detection of cyclically linked garbage, which collects most objects as soon
65 as they become unreachable, but is not guaranteed to collect garbage
66 containing circular references. See the documentation of the :mod:`gc`
67 module for information on controlling the collection of cyclic garbage.
68 Other implementations act differently and CPython may change.
Gregory P. Smith28d57c02011-03-10 11:49:27 -080069 Do not depend on immediate finalization of objects when they become
70 unreachable (ex: always close files).
Georg Brandl8ec7f652007-08-15 14:28:01 +000071
72Note that the use of the implementation's tracing or debugging facilities may
73keep objects alive that would normally be collectable. Also note that catching
74an exception with a ':keyword:`try`...\ :keyword:`except`' statement may keep
75objects alive.
76
77Some objects contain references to "external" resources such as open files or
78windows. It is understood that these resources are freed when the object is
79garbage-collected, but since garbage collection is not guaranteed to happen,
80such objects also provide an explicit way to release the external resource,
81usually a :meth:`close` method. Programs are strongly recommended to explicitly
82close such objects. The ':keyword:`try`...\ :keyword:`finally`' statement
83provides a convenient way to do this.
84
85.. index:: single: container
86
87Some objects contain references to other objects; these are called *containers*.
88Examples of containers are tuples, lists and dictionaries. The references are
89part of a container's value. In most cases, when we talk about the value of a
90container, we imply the values, not the identities of the contained objects;
91however, when we talk about the mutability of a container, only the identities
92of the immediately contained objects are implied. So, if an immutable container
93(like a tuple) contains a reference to a mutable object, its value changes if
94that mutable object is changed.
95
96Types affect almost all aspects of object behavior. Even the importance of
97object identity is affected in some sense: for immutable types, operations that
98compute new values may actually return a reference to any existing object with
99the same type and value, while for mutable objects this is not allowed. E.g.,
100after ``a = 1; b = 1``, ``a`` and ``b`` may or may not refer to the same object
101with the value one, depending on the implementation, but after ``c = []; d =
102[]``, ``c`` and ``d`` are guaranteed to refer to two different, unique, newly
103created empty lists. (Note that ``c = d = []`` assigns the same object to both
104``c`` and ``d``.)
105
106
107.. _types:
108
109The standard type hierarchy
110===========================
111
112.. index::
113 single: type
114 pair: data; type
115 pair: type; hierarchy
116 pair: extension; module
117 pair: C; language
118
119Below is a list of the types that are built into Python. Extension modules
120(written in C, Java, or other languages, depending on the implementation) can
121define additional types. Future versions of Python may add types to the type
122hierarchy (e.g., rational numbers, efficiently stored arrays of integers, etc.).
123
124.. index::
125 single: attribute
126 pair: special; attribute
127 triple: generic; special; attribute
128
129Some of the type descriptions below contain a paragraph listing 'special
130attributes.' These are attributes that provide access to the implementation and
131are not intended for general use. Their definition may change in the future.
132
133None
134 .. index:: object: None
135
136 This type has a single value. There is a single object with this value. This
137 object is accessed through the built-in name ``None``. It is used to signify the
138 absence of a value in many situations, e.g., it is returned from functions that
139 don't explicitly return anything. Its truth value is false.
140
141NotImplemented
142 .. index:: object: NotImplemented
143
144 This type has a single value. There is a single object with this value. This
145 object is accessed through the built-in name ``NotImplemented``. Numeric methods
146 and rich comparison methods may return this value if they do not implement the
147 operation for the operands provided. (The interpreter will then try the
148 reflected operation, or some other fallback, depending on the operator.) Its
149 truth value is true.
150
151Ellipsis
152 .. index:: object: Ellipsis
153
154 This type has a single value. There is a single object with this value. This
155 object is accessed through the built-in name ``Ellipsis``. It is used to
156 indicate the presence of the ``...`` syntax in a slice. Its truth value is
157 true.
158
Jeffrey Yasskin2f3c16b2008-01-03 02:21:52 +0000159:class:`numbers.Number`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000160 .. index:: object: numeric
161
162 These are created by numeric literals and returned as results by arithmetic
163 operators and arithmetic built-in functions. Numeric objects are immutable;
164 once created their value never changes. Python numbers are of course strongly
165 related to mathematical numbers, but subject to the limitations of numerical
166 representation in computers.
167
168 Python distinguishes between integers, floating point numbers, and complex
169 numbers:
170
Jeffrey Yasskin2f3c16b2008-01-03 02:21:52 +0000171 :class:`numbers.Integral`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000172 .. index:: object: integer
173
174 These represent elements from the mathematical set of integers (positive and
175 negative).
176
177 There are three types of integers:
178
179 Plain integers
180 .. index::
181 object: plain integer
182 single: OverflowError (built-in exception)
183
Georg Brandle9135ba2008-05-11 10:55:59 +0000184 These represent numbers in the range -2147483648 through 2147483647.
185 (The range may be larger on machines with a larger natural word size,
186 but not smaller.) When the result of an operation would fall outside
187 this range, the result is normally returned as a long integer (in some
188 cases, the exception :exc:`OverflowError` is raised instead). For the
189 purpose of shift and mask operations, integers are assumed to have a
190 binary, 2's complement notation using 32 or more bits, and hiding no
191 bits from the user (i.e., all 4294967296 different bit patterns
192 correspond to different values).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000193
194 Long integers
195 .. index:: object: long integer
196
Georg Brandle9135ba2008-05-11 10:55:59 +0000197 These represent numbers in an unlimited range, subject to available
198 (virtual) memory only. For the purpose of shift and mask operations, a
199 binary representation is assumed, and negative numbers are represented
200 in a variant of 2's complement which gives the illusion of an infinite
201 string of sign bits extending to the left.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000202
203 Booleans
204 .. index::
205 object: Boolean
206 single: False
207 single: True
208
Georg Brandle9135ba2008-05-11 10:55:59 +0000209 These represent the truth values False and True. The two objects
210 representing the values False and True are the only Boolean objects.
211 The Boolean type is a subtype of plain integers, and Boolean values
212 behave like the values 0 and 1, respectively, in almost all contexts,
213 the exception being that when converted to a string, the strings
214 ``"False"`` or ``"True"`` are returned, respectively.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000215
216 .. index:: pair: integer; representation
217
Georg Brandle9135ba2008-05-11 10:55:59 +0000218 The rules for integer representation are intended to give the most
219 meaningful interpretation of shift and mask operations involving negative
220 integers and the least surprises when switching between the plain and long
221 integer domains. Any operation, if it yields a result in the plain
222 integer domain, will yield the same result in the long integer domain or
223 when using mixed operands. The switch between domains is transparent to
224 the programmer.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000225
Jeffrey Yasskin2f3c16b2008-01-03 02:21:52 +0000226 :class:`numbers.Real` (:class:`float`)
Georg Brandl8ec7f652007-08-15 14:28:01 +0000227 .. index::
228 object: floating point
229 pair: floating point; number
230 pair: C; language
231 pair: Java; language
232
233 These represent machine-level double precision floating point numbers. You are
234 at the mercy of the underlying machine architecture (and C or Java
235 implementation) for the accepted range and handling of overflow. Python does not
236 support single-precision floating point numbers; the savings in processor and
237 memory usage that are usually the reason for using these is dwarfed by the
238 overhead of using objects in Python, so there is no reason to complicate the
239 language with two kinds of floating point numbers.
240
Jeffrey Yasskin2f3c16b2008-01-03 02:21:52 +0000241 :class:`numbers.Complex`
Georg Brandl8ec7f652007-08-15 14:28:01 +0000242 .. index::
243 object: complex
244 pair: complex; number
245
246 These represent complex numbers as a pair of machine-level double precision
247 floating point numbers. The same caveats apply as for floating point numbers.
248 The real and imaginary parts of a complex number ``z`` can be retrieved through
249 the read-only attributes ``z.real`` and ``z.imag``.
250
Georg Brandl8ec7f652007-08-15 14:28:01 +0000251Sequences
252 .. index::
253 builtin: len
254 object: sequence
255 single: index operation
256 single: item selection
257 single: subscription
258
259 These represent finite ordered sets indexed by non-negative numbers. The
260 built-in function :func:`len` returns the number of items of a sequence. When
261 the length of a sequence is *n*, the index set contains the numbers 0, 1,
262 ..., *n*-1. Item *i* of sequence *a* is selected by ``a[i]``.
263
264 .. index:: single: slicing
265
266 Sequences also support slicing: ``a[i:j]`` selects all items with index *k* such
267 that *i* ``<=`` *k* ``<`` *j*. When used as an expression, a slice is a
268 sequence of the same type. This implies that the index set is renumbered so
269 that it starts at 0.
270
271 .. index:: single: extended slicing
272
273 Some sequences also support "extended slicing" with a third "step" parameter:
274 ``a[i:j:k]`` selects all items of *a* with index *x* where ``x = i + n*k``, *n*
275 ``>=`` ``0`` and *i* ``<=`` *x* ``<`` *j*.
276
277 Sequences are distinguished according to their mutability:
278
279 Immutable sequences
280 .. index::
281 object: immutable sequence
282 object: immutable
283
284 An object of an immutable sequence type cannot change once it is created. (If
285 the object contains references to other objects, these other objects may be
286 mutable and may be changed; however, the collection of objects directly
287 referenced by an immutable object cannot change.)
288
289 The following types are immutable sequences:
290
291 Strings
292 .. index::
293 builtin: chr
294 builtin: ord
295 object: string
296 single: character
297 single: byte
298 single: ASCII@ASCII
299
300 The items of a string are characters. There is no separate character type; a
301 character is represented by a string of one item. Characters represent (at
302 least) 8-bit bytes. The built-in functions :func:`chr` and :func:`ord` convert
303 between characters and nonnegative integers representing the byte values. Bytes
304 with the values 0-127 usually represent the corresponding ASCII values, but the
305 interpretation of values is up to the program. The string data type is also
306 used to represent arrays of bytes, e.g., to hold data read from a file.
307
308 .. index::
309 single: ASCII@ASCII
310 single: EBCDIC
311 single: character set
312 pair: string; comparison
313 builtin: chr
314 builtin: ord
315
316 (On systems whose native character set is not ASCII, strings may use EBCDIC in
317 their internal representation, provided the functions :func:`chr` and
318 :func:`ord` implement a mapping between ASCII and EBCDIC, and string comparison
319 preserves the ASCII order. Or perhaps someone can propose a better rule?)
320
321 Unicode
322 .. index::
323 builtin: unichr
324 builtin: ord
325 builtin: unicode
326 object: unicode
327 single: character
328 single: integer
329 single: Unicode
330
331 The items of a Unicode object are Unicode code units. A Unicode code unit is
332 represented by a Unicode object of one item and can hold either a 16-bit or
333 32-bit value representing a Unicode ordinal (the maximum value for the ordinal
334 is given in ``sys.maxunicode``, and depends on how Python is configured at
335 compile time). Surrogate pairs may be present in the Unicode object, and will
336 be reported as two separate items. The built-in functions :func:`unichr` and
337 :func:`ord` convert between code units and nonnegative integers representing the
338 Unicode ordinals as defined in the Unicode Standard 3.0. Conversion from and to
339 other encodings are possible through the Unicode method :meth:`encode` and the
340 built-in function :func:`unicode`.
341
342 Tuples
343 .. index::
344 object: tuple
345 pair: singleton; tuple
346 pair: empty; tuple
347
348 The items of a tuple are arbitrary Python objects. Tuples of two or more items
349 are formed by comma-separated lists of expressions. A tuple of one item (a
350 'singleton') can be formed by affixing a comma to an expression (an expression
351 by itself does not create a tuple, since parentheses must be usable for grouping
352 of expressions). An empty tuple can be formed by an empty pair of parentheses.
353
Georg Brandl8ec7f652007-08-15 14:28:01 +0000354 Mutable sequences
355 .. index::
356 object: mutable sequence
357 object: mutable
358 pair: assignment; statement
359 single: delete
360 statement: del
361 single: subscription
362 single: slicing
363
364 Mutable sequences can be changed after they are created. The subscription and
365 slicing notations can be used as the target of assignment and :keyword:`del`
366 (delete) statements.
367
Benjamin Petersonb7464482009-01-18 01:28:46 +0000368 There are currently two intrinsic mutable sequence types:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000369
370 Lists
371 .. index:: object: list
372
373 The items of a list are arbitrary Python objects. Lists are formed by placing a
374 comma-separated list of expressions in square brackets. (Note that there are no
375 special cases needed to form lists of length 0 or 1.)
376
Benjamin Petersonf1a40692009-01-18 01:28:09 +0000377 Byte Arrays
378 .. index:: bytearray
379
380 A bytearray object is a mutable array. They are created by the built-in
381 :func:`bytearray` constructor. Aside from being mutable (and hence
382 unhashable), byte arrays otherwise provide the same interface and
383 functionality as immutable bytes objects.
384
Georg Brandl8ec7f652007-08-15 14:28:01 +0000385 .. index:: module: array
386
387 The extension module :mod:`array` provides an additional example of a mutable
388 sequence type.
389
Georg Brandl2ce1c612009-03-31 19:14:42 +0000390Set types
Georg Brandl8ec7f652007-08-15 14:28:01 +0000391 .. index::
392 builtin: len
393 object: set type
394
395 These represent unordered, finite sets of unique, immutable objects. As such,
396 they cannot be indexed by any subscript. However, they can be iterated over, and
397 the built-in function :func:`len` returns the number of items in a set. Common
398 uses for sets are fast membership testing, removing duplicates from a sequence,
399 and computing mathematical operations such as intersection, union, difference,
400 and symmetric difference.
401
402 For set elements, the same immutability rules apply as for dictionary keys. Note
403 that numeric types obey the normal rules for numeric comparison: if two numbers
404 compare equal (e.g., ``1`` and ``1.0``), only one of them can be contained in a
405 set.
406
407 There are currently two intrinsic set types:
408
409 Sets
410 .. index:: object: set
411
412 These represent a mutable set. They are created by the built-in :func:`set`
413 constructor and can be modified afterwards by several methods, such as
414 :meth:`add`.
415
416 Frozen sets
417 .. index:: object: frozenset
418
Georg Brandl7c3e79f2007-11-02 20:06:17 +0000419 These represent an immutable set. They are created by the built-in
420 :func:`frozenset` constructor. As a frozenset is immutable and
421 :term:`hashable`, it can be used again as an element of another set, or as
422 a dictionary key.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000423
Georg Brandl8ec7f652007-08-15 14:28:01 +0000424Mappings
425 .. index::
426 builtin: len
427 single: subscription
428 object: mapping
429
430 These represent finite sets of objects indexed by arbitrary index sets. The
431 subscript notation ``a[k]`` selects the item indexed by ``k`` from the mapping
432 ``a``; this can be used in expressions and as the target of assignments or
433 :keyword:`del` statements. The built-in function :func:`len` returns the number
434 of items in a mapping.
435
436 There is currently a single intrinsic mapping type:
437
438 Dictionaries
439 .. index:: object: dictionary
440
441 These represent finite sets of objects indexed by nearly arbitrary values. The
442 only types of values not acceptable as keys are values containing lists or
443 dictionaries or other mutable types that are compared by value rather than by
444 object identity, the reason being that the efficient implementation of
445 dictionaries requires a key's hash value to remain constant. Numeric types used
446 for keys obey the normal rules for numeric comparison: if two numbers compare
447 equal (e.g., ``1`` and ``1.0``) then they can be used interchangeably to index
448 the same dictionary entry.
449
450 Dictionaries are mutable; they can be created by the ``{...}`` notation (see
451 section :ref:`dict`).
452
453 .. index::
454 module: dbm
455 module: gdbm
456 module: bsddb
457
458 The extension modules :mod:`dbm`, :mod:`gdbm`, and :mod:`bsddb` provide
459 additional examples of mapping types.
460
Georg Brandl8ec7f652007-08-15 14:28:01 +0000461Callable types
462 .. index::
463 object: callable
464 pair: function; call
465 single: invocation
466 pair: function; argument
467
468 These are the types to which the function call operation (see section
469 :ref:`calls`) can be applied:
470
471 User-defined functions
472 .. index::
473 pair: user-defined; function
474 object: function
475 object: user-defined function
476
477 A user-defined function object is created by a function definition (see
478 section :ref:`function`). It should be called with an argument list
479 containing the same number of items as the function's formal parameter
480 list.
481
482 Special attributes:
483
484 +-----------------------+-------------------------------+-----------+
485 | Attribute | Meaning | |
486 +=======================+===============================+===========+
487 | :attr:`func_doc` | The function's documentation | Writable |
488 | | string, or ``None`` if | |
489 | | unavailable | |
490 +-----------------------+-------------------------------+-----------+
491 | :attr:`__doc__` | Another way of spelling | Writable |
492 | | :attr:`func_doc` | |
493 +-----------------------+-------------------------------+-----------+
494 | :attr:`func_name` | The function's name | Writable |
495 +-----------------------+-------------------------------+-----------+
496 | :attr:`__name__` | Another way of spelling | Writable |
497 | | :attr:`func_name` | |
498 +-----------------------+-------------------------------+-----------+
499 | :attr:`__module__` | The name of the module the | Writable |
500 | | function was defined in, or | |
501 | | ``None`` if unavailable. | |
502 +-----------------------+-------------------------------+-----------+
503 | :attr:`func_defaults` | A tuple containing default | Writable |
504 | | argument values for those | |
505 | | arguments that have defaults, | |
506 | | or ``None`` if no arguments | |
507 | | have a default value | |
508 +-----------------------+-------------------------------+-----------+
509 | :attr:`func_code` | The code object representing | Writable |
510 | | the compiled function body. | |
511 +-----------------------+-------------------------------+-----------+
512 | :attr:`func_globals` | A reference to the dictionary | Read-only |
513 | | that holds the function's | |
514 | | global variables --- the | |
515 | | global namespace of the | |
516 | | module in which the function | |
517 | | was defined. | |
518 +-----------------------+-------------------------------+-----------+
519 | :attr:`func_dict` | The namespace supporting | Writable |
520 | | arbitrary function | |
521 | | attributes. | |
522 +-----------------------+-------------------------------+-----------+
523 | :attr:`func_closure` | ``None`` or a tuple of cells | Read-only |
524 | | that contain bindings for the | |
525 | | function's free variables. | |
526 +-----------------------+-------------------------------+-----------+
527
528 Most of the attributes labelled "Writable" check the type of the assigned value.
529
530 .. versionchanged:: 2.4
531 ``func_name`` is now writable.
532
533 Function objects also support getting and setting arbitrary attributes, which
534 can be used, for example, to attach metadata to functions. Regular attribute
535 dot-notation is used to get and set such attributes. *Note that the current
536 implementation only supports function attributes on user-defined functions.
537 Function attributes on built-in functions may be supported in the future.*
538
539 Additional information about a function's definition can be retrieved from its
540 code object; see the description of internal types below.
541
542 .. index::
543 single: func_doc (function attribute)
544 single: __doc__ (function attribute)
545 single: __name__ (function attribute)
546 single: __module__ (function attribute)
547 single: __dict__ (function attribute)
548 single: func_defaults (function attribute)
549 single: func_closure (function attribute)
550 single: func_code (function attribute)
551 single: func_globals (function attribute)
552 single: func_dict (function attribute)
553 pair: global; namespace
554
555 User-defined methods
556 .. index::
557 object: method
558 object: user-defined method
559 pair: user-defined; method
560
561 A user-defined method object combines a class, a class instance (or ``None``)
562 and any callable object (normally a user-defined function).
563
564 Special read-only attributes: :attr:`im_self` is the class instance object,
565 :attr:`im_func` is the function object; :attr:`im_class` is the class of
566 :attr:`im_self` for bound methods or the class that asked for the method for
567 unbound methods; :attr:`__doc__` is the method's documentation (same as
568 ``im_func.__doc__``); :attr:`__name__` is the method name (same as
569 ``im_func.__name__``); :attr:`__module__` is the name of the module the method
570 was defined in, or ``None`` if unavailable.
571
572 .. versionchanged:: 2.2
573 :attr:`im_self` used to refer to the class that defined the method.
574
Georg Brandl3fbe20c2008-03-21 19:20:21 +0000575 .. versionchanged:: 2.6
Ezio Melotti510ff542012-05-03 19:21:40 +0300576 For Python 3 forward-compatibility, :attr:`im_func` is also available as
Georg Brandl3fbe20c2008-03-21 19:20:21 +0000577 :attr:`__func__`, and :attr:`im_self` as :attr:`__self__`.
578
Georg Brandl8ec7f652007-08-15 14:28:01 +0000579 .. index::
580 single: __doc__ (method attribute)
581 single: __name__ (method attribute)
582 single: __module__ (method attribute)
583 single: im_func (method attribute)
584 single: im_self (method attribute)
585
586 Methods also support accessing (but not setting) the arbitrary function
587 attributes on the underlying function object.
588
589 User-defined method objects may be created when getting an attribute of a class
590 (perhaps via an instance of that class), if that attribute is a user-defined
591 function object, an unbound user-defined method object, or a class method
592 object. When the attribute is a user-defined method object, a new method object
593 is only created if the class from which it is being retrieved is the same as, or
594 a derived class of, the class stored in the original method object; otherwise,
595 the original method object is used as it is.
596
597 .. index::
598 single: im_class (method attribute)
599 single: im_func (method attribute)
600 single: im_self (method attribute)
601
602 When a user-defined method object is created by retrieving a user-defined
603 function object from a class, its :attr:`im_self` attribute is ``None``
604 and the method object is said to be unbound. When one is created by
605 retrieving a user-defined function object from a class via one of its
606 instances, its :attr:`im_self` attribute is the instance, and the method
607 object is said to be bound. In either case, the new method's
608 :attr:`im_class` attribute is the class from which the retrieval takes
609 place, and its :attr:`im_func` attribute is the original function object.
610
611 .. index:: single: im_func (method attribute)
612
613 When a user-defined method object is created by retrieving another method object
614 from a class or instance, the behaviour is the same as for a function object,
615 except that the :attr:`im_func` attribute of the new instance is not the
616 original method object but its :attr:`im_func` attribute.
617
618 .. index::
619 single: im_class (method attribute)
620 single: im_func (method attribute)
621 single: im_self (method attribute)
622
623 When a user-defined method object is created by retrieving a class method object
624 from a class or instance, its :attr:`im_self` attribute is the class itself (the
625 same as the :attr:`im_class` attribute), and its :attr:`im_func` attribute is
626 the function object underlying the class method.
627
628 When an unbound user-defined method object is called, the underlying function
629 (:attr:`im_func`) is called, with the restriction that the first argument must
630 be an instance of the proper class (:attr:`im_class`) or of a derived class
631 thereof.
632
633 When a bound user-defined method object is called, the underlying function
634 (:attr:`im_func`) is called, inserting the class instance (:attr:`im_self`) in
635 front of the argument list. For instance, when :class:`C` is a class which
636 contains a definition for a function :meth:`f`, and ``x`` is an instance of
637 :class:`C`, calling ``x.f(1)`` is equivalent to calling ``C.f(x, 1)``.
638
639 When a user-defined method object is derived from a class method object, the
640 "class instance" stored in :attr:`im_self` will actually be the class itself, so
641 that calling either ``x.f(1)`` or ``C.f(1)`` is equivalent to calling ``f(C,1)``
642 where ``f`` is the underlying function.
643
644 Note that the transformation from function object to (unbound or bound) method
645 object happens each time the attribute is retrieved from the class or instance.
646 In some cases, a fruitful optimization is to assign the attribute to a local
647 variable and call that local variable. Also notice that this transformation only
648 happens for user-defined functions; other callable objects (and all non-callable
649 objects) are retrieved without transformation. It is also important to note
650 that user-defined functions which are attributes of a class instance are not
651 converted to bound methods; this *only* happens when the function is an
652 attribute of the class.
653
654 Generator functions
655 .. index::
656 single: generator; function
657 single: generator; iterator
658
659 A function or method which uses the :keyword:`yield` statement (see section
660 :ref:`yield`) is called a :dfn:`generator
661 function`. Such a function, when called, always returns an iterator object
662 which can be used to execute the body of the function: calling the iterator's
663 :meth:`next` method will cause the function to execute until it provides a value
664 using the :keyword:`yield` statement. When the function executes a
665 :keyword:`return` statement or falls off the end, a :exc:`StopIteration`
666 exception is raised and the iterator will have reached the end of the set of
667 values to be returned.
668
669 Built-in functions
670 .. index::
671 object: built-in function
672 object: function
673 pair: C; language
674
675 A built-in function object is a wrapper around a C function. Examples of
676 built-in functions are :func:`len` and :func:`math.sin` (:mod:`math` is a
677 standard built-in module). The number and type of the arguments are
678 determined by the C function. Special read-only attributes:
679 :attr:`__doc__` is the function's documentation string, or ``None`` if
680 unavailable; :attr:`__name__` is the function's name; :attr:`__self__` is
681 set to ``None`` (but see the next item); :attr:`__module__` is the name of
682 the module the function was defined in or ``None`` if unavailable.
683
684 Built-in methods
685 .. index::
686 object: built-in method
687 object: method
688 pair: built-in; method
689
690 This is really a different disguise of a built-in function, this time containing
691 an object passed to the C function as an implicit extra argument. An example of
692 a built-in method is ``alist.append()``, assuming *alist* is a list object. In
693 this case, the special read-only attribute :attr:`__self__` is set to the object
Éric Araujo5c804ff2010-12-26 02:24:42 +0000694 denoted by *alist*.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000695
696 Class Types
697 Class types, or "new-style classes," are callable. These objects normally act
698 as factories for new instances of themselves, but variations are possible for
699 class types that override :meth:`__new__`. The arguments of the call are passed
700 to :meth:`__new__` and, in the typical case, to :meth:`__init__` to initialize
701 the new instance.
702
703 Classic Classes
704 .. index::
705 single: __init__() (object method)
706 object: class
707 object: class instance
708 object: instance
709 pair: class object; call
710
711 Class objects are described below. When a class object is called, a new class
712 instance (also described below) is created and returned. This implies a call to
713 the class's :meth:`__init__` method if it has one. Any arguments are passed on
714 to the :meth:`__init__` method. If there is no :meth:`__init__` method, the
715 class must be called without arguments.
716
717 Class instances
718 Class instances are described below. Class instances are callable only when the
719 class has a :meth:`__call__` method; ``x(arguments)`` is a shorthand for
720 ``x.__call__(arguments)``.
721
722Modules
723 .. index::
724 statement: import
725 object: module
726
727 Modules are imported by the :keyword:`import` statement (see section
728 :ref:`import`). A module object has a
729 namespace implemented by a dictionary object (this is the dictionary referenced
730 by the func_globals attribute of functions defined in the module). Attribute
731 references are translated to lookups in this dictionary, e.g., ``m.x`` is
732 equivalent to ``m.__dict__["x"]``. A module object does not contain the code
733 object used to initialize the module (since it isn't needed once the
734 initialization is done).
735
Georg Brandl8ec7f652007-08-15 14:28:01 +0000736 Attribute assignment updates the module's namespace dictionary, e.g., ``m.x =
737 1`` is equivalent to ``m.__dict__["x"] = 1``.
738
739 .. index:: single: __dict__ (module attribute)
740
741 Special read-only attribute: :attr:`__dict__` is the module's namespace as a
742 dictionary object.
743
Benjamin Petersondc954242010-10-12 23:02:35 +0000744 .. impl-detail::
745
746 Because of the way CPython clears module dictionaries, the module
747 dictionary will be cleared when the module falls out of scope even if the
748 dictionary still has live references. To avoid this, copy the dictionary
749 or keep the module around while using its dictionary directly.
750
Georg Brandl8ec7f652007-08-15 14:28:01 +0000751 .. index::
752 single: __name__ (module attribute)
753 single: __doc__ (module attribute)
754 single: __file__ (module attribute)
755 pair: module; namespace
756
757 Predefined (writable) attributes: :attr:`__name__` is the module's name;
758 :attr:`__doc__` is the module's documentation string, or ``None`` if
759 unavailable; :attr:`__file__` is the pathname of the file from which the module
760 was loaded, if it was loaded from a file. The :attr:`__file__` attribute is not
761 present for C modules that are statically linked into the interpreter; for
762 extension modules loaded dynamically from a shared library, it is the pathname
763 of the shared library file.
764
765Classes
Nick Coghlana5107482008-08-04 12:40:59 +0000766 Both class types (new-style classes) and class objects (old-style/classic
767 classes) are typically created by class definitions (see section
768 :ref:`class`). A class has a namespace implemented by a dictionary object.
769 Class attribute references are translated to lookups in this dictionary, e.g.,
770 ``C.x`` is translated to ``C.__dict__["x"]`` (although for new-style classes
771 in particular there are a number of hooks which allow for other means of
772 locating attributes). When the attribute name is not found there, the
773 attribute search continues in the base classes. For old-style classes, the
774 search is depth-first, left-to-right in the order of occurrence in the base
775 class list. New-style classes use the more complex C3 method resolution
776 order which behaves correctly even in the presence of 'diamond'
777 inheritance structures where there are multiple inheritance paths
778 leading back to a common ancestor. Additional details on the C3 MRO used by
779 new-style classes can be found in the documentation accompanying the
780 2.3 release at http://www.python.org/download/releases/2.3/mro/.
781
782 .. XXX: Could we add that MRO doc as an appendix to the language ref?
Georg Brandl8ec7f652007-08-15 14:28:01 +0000783
784 .. index::
785 object: class
786 object: class instance
787 object: instance
788 pair: class object; call
789 single: container
790 object: dictionary
791 pair: class; attribute
792
793 When a class attribute reference (for class :class:`C`, say) would yield a
794 user-defined function object or an unbound user-defined method object whose
795 associated class is either :class:`C` or one of its base classes, it is
796 transformed into an unbound user-defined method object whose :attr:`im_class`
797 attribute is :class:`C`. When it would yield a class method object, it is
798 transformed into a bound user-defined method object whose :attr:`im_class`
799 and :attr:`im_self` attributes are both :class:`C`. When it would yield a
800 static method object, it is transformed into the object wrapped by the static
801 method object. See section :ref:`descriptors` for another way in which
802 attributes retrieved from a class may differ from those actually contained in
Nick Coghlana5107482008-08-04 12:40:59 +0000803 its :attr:`__dict__` (note that only new-style classes support descriptors).
Georg Brandl8ec7f652007-08-15 14:28:01 +0000804
805 .. index:: triple: class; attribute; assignment
806
807 Class attribute assignments update the class's dictionary, never the dictionary
808 of a base class.
809
810 .. index:: pair: class object; call
811
812 A class object can be called (see above) to yield a class instance (see below).
813
814 .. index::
815 single: __name__ (class attribute)
816 single: __module__ (class attribute)
817 single: __dict__ (class attribute)
818 single: __bases__ (class attribute)
819 single: __doc__ (class attribute)
820
821 Special attributes: :attr:`__name__` is the class name; :attr:`__module__` is
822 the module name in which the class was defined; :attr:`__dict__` is the
823 dictionary containing the class's namespace; :attr:`__bases__` is a tuple
824 (possibly empty or a singleton) containing the base classes, in the order of
825 their occurrence in the base class list; :attr:`__doc__` is the class's
826 documentation string, or None if undefined.
827
828Class instances
829 .. index::
830 object: class instance
831 object: instance
832 pair: class; instance
833 pair: class instance; attribute
834
835 A class instance is created by calling a class object (see above). A class
836 instance has a namespace implemented as a dictionary which is the first place in
837 which attribute references are searched. When an attribute is not found there,
838 and the instance's class has an attribute by that name, the search continues
839 with the class attributes. If a class attribute is found that is a user-defined
840 function object or an unbound user-defined method object whose associated class
841 is the class (call it :class:`C`) of the instance for which the attribute
842 reference was initiated or one of its bases, it is transformed into a bound
843 user-defined method object whose :attr:`im_class` attribute is :class:`C` and
844 whose :attr:`im_self` attribute is the instance. Static method and class method
845 objects are also transformed, as if they had been retrieved from class
846 :class:`C`; see above under "Classes". See section :ref:`descriptors` for
847 another way in which attributes of a class retrieved via its instances may
848 differ from the objects actually stored in the class's :attr:`__dict__`. If no
849 class attribute is found, and the object's class has a :meth:`__getattr__`
850 method, that is called to satisfy the lookup.
851
852 .. index:: triple: class instance; attribute; assignment
853
854 Attribute assignments and deletions update the instance's dictionary, never a
855 class's dictionary. If the class has a :meth:`__setattr__` or
856 :meth:`__delattr__` method, this is called instead of updating the instance
857 dictionary directly.
858
859 .. index::
860 object: numeric
861 object: sequence
862 object: mapping
863
864 Class instances can pretend to be numbers, sequences, or mappings if they have
865 methods with certain special names. See section :ref:`specialnames`.
866
867 .. index::
868 single: __dict__ (instance attribute)
869 single: __class__ (instance attribute)
870
871 Special attributes: :attr:`__dict__` is the attribute dictionary;
872 :attr:`__class__` is the instance's class.
873
874Files
875 .. index::
876 object: file
877 builtin: open
878 single: popen() (in module os)
879 single: makefile() (socket method)
880 single: sys.stdin
881 single: sys.stdout
882 single: sys.stderr
883 single: stdio
884 single: stdin (in module sys)
885 single: stdout (in module sys)
886 single: stderr (in module sys)
887
888 A file object represents an open file. File objects are created by the
889 :func:`open` built-in function, and also by :func:`os.popen`,
890 :func:`os.fdopen`, and the :meth:`makefile` method of socket objects (and
891 perhaps by other functions or methods provided by extension modules). The
892 objects ``sys.stdin``, ``sys.stdout`` and ``sys.stderr`` are initialized to
893 file objects corresponding to the interpreter's standard input, output and
894 error streams. See :ref:`bltin-file-objects` for complete documentation of
895 file objects.
896
897Internal types
898 .. index::
899 single: internal type
900 single: types, internal
901
902 A few types used internally by the interpreter are exposed to the user. Their
903 definitions may change with future versions of the interpreter, but they are
904 mentioned here for completeness.
905
906 Code objects
907 .. index::
908 single: bytecode
909 object: code
910
Georg Brandl63fa1682007-10-21 10:24:20 +0000911 Code objects represent *byte-compiled* executable Python code, or :term:`bytecode`.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000912 The difference between a code object and a function object is that the function
913 object contains an explicit reference to the function's globals (the module in
914 which it was defined), while a code object contains no context; also the default
915 argument values are stored in the function object, not in the code object
916 (because they represent values calculated at run-time). Unlike function
917 objects, code objects are immutable and contain no references (directly or
918 indirectly) to mutable objects.
919
Senthil Kumaranfca48ef2010-10-02 03:29:31 +0000920 .. index::
921 single: co_argcount (code object attribute)
922 single: co_code (code object attribute)
923 single: co_consts (code object attribute)
924 single: co_filename (code object attribute)
925 single: co_firstlineno (code object attribute)
926 single: co_flags (code object attribute)
927 single: co_lnotab (code object attribute)
928 single: co_name (code object attribute)
929 single: co_names (code object attribute)
930 single: co_nlocals (code object attribute)
931 single: co_stacksize (code object attribute)
932 single: co_varnames (code object attribute)
933 single: co_cellvars (code object attribute)
934 single: co_freevars (code object attribute)
935
Georg Brandl8ec7f652007-08-15 14:28:01 +0000936 Special read-only attributes: :attr:`co_name` gives the function name;
937 :attr:`co_argcount` is the number of positional arguments (including arguments
938 with default values); :attr:`co_nlocals` is the number of local variables used
939 by the function (including arguments); :attr:`co_varnames` is a tuple containing
940 the names of the local variables (starting with the argument names);
941 :attr:`co_cellvars` is a tuple containing the names of local variables that are
942 referenced by nested functions; :attr:`co_freevars` is a tuple containing the
943 names of free variables; :attr:`co_code` is a string representing the sequence
944 of bytecode instructions; :attr:`co_consts` is a tuple containing the literals
945 used by the bytecode; :attr:`co_names` is a tuple containing the names used by
946 the bytecode; :attr:`co_filename` is the filename from which the code was
947 compiled; :attr:`co_firstlineno` is the first line number of the function;
Georg Brandl63fa1682007-10-21 10:24:20 +0000948 :attr:`co_lnotab` is a string encoding the mapping from bytecode offsets to
Georg Brandl8ec7f652007-08-15 14:28:01 +0000949 line numbers (for details see the source code of the interpreter);
950 :attr:`co_stacksize` is the required stack size (including local variables);
951 :attr:`co_flags` is an integer encoding a number of flags for the interpreter.
952
Georg Brandl8ec7f652007-08-15 14:28:01 +0000953 .. index:: object: generator
954
955 The following flag bits are defined for :attr:`co_flags`: bit ``0x04`` is set if
956 the function uses the ``*arguments`` syntax to accept an arbitrary number of
957 positional arguments; bit ``0x08`` is set if the function uses the
958 ``**keywords`` syntax to accept arbitrary keyword arguments; bit ``0x20`` is set
959 if the function is a generator.
960
961 Future feature declarations (``from __future__ import division``) also use bits
962 in :attr:`co_flags` to indicate whether a code object was compiled with a
963 particular feature enabled: bit ``0x2000`` is set if the function was compiled
964 with future division enabled; bits ``0x10`` and ``0x1000`` were used in earlier
965 versions of Python.
966
967 Other bits in :attr:`co_flags` are reserved for internal use.
968
969 .. index:: single: documentation string
970
971 If a code object represents a function, the first item in :attr:`co_consts` is
972 the documentation string of the function, or ``None`` if undefined.
973
Georg Brandl86158fc2009-09-01 08:00:47 +0000974 .. _frame-objects:
975
Georg Brandl8ec7f652007-08-15 14:28:01 +0000976 Frame objects
977 .. index:: object: frame
978
979 Frame objects represent execution frames. They may occur in traceback objects
980 (see below).
981
982 .. index::
983 single: f_back (frame attribute)
984 single: f_code (frame attribute)
985 single: f_globals (frame attribute)
986 single: f_locals (frame attribute)
987 single: f_lasti (frame attribute)
988 single: f_builtins (frame attribute)
989 single: f_restricted (frame attribute)
990
991 Special read-only attributes: :attr:`f_back` is to the previous stack frame
992 (towards the caller), or ``None`` if this is the bottom stack frame;
993 :attr:`f_code` is the code object being executed in this frame; :attr:`f_locals`
994 is the dictionary used to look up local variables; :attr:`f_globals` is used for
995 global variables; :attr:`f_builtins` is used for built-in (intrinsic) names;
996 :attr:`f_restricted` is a flag indicating whether the function is executing in
997 restricted execution mode; :attr:`f_lasti` gives the precise instruction (this
998 is an index into the bytecode string of the code object).
999
1000 .. index::
1001 single: f_trace (frame attribute)
1002 single: f_exc_type (frame attribute)
1003 single: f_exc_value (frame attribute)
1004 single: f_exc_traceback (frame attribute)
1005 single: f_lineno (frame attribute)
1006
1007 Special writable attributes: :attr:`f_trace`, if not ``None``, is a function
1008 called at the start of each source code line (this is used by the debugger);
1009 :attr:`f_exc_type`, :attr:`f_exc_value`, :attr:`f_exc_traceback` represent the
1010 last exception raised in the parent frame provided another exception was ever
1011 raised in the current frame (in all other cases they are None); :attr:`f_lineno`
1012 is the current line number of the frame --- writing to this from within a trace
1013 function jumps to the given line (only for the bottom-most frame). A debugger
1014 can implement a Jump command (aka Set Next Statement) by writing to f_lineno.
1015
1016 Traceback objects
1017 .. index::
1018 object: traceback
1019 pair: stack; trace
1020 pair: exception; handler
1021 pair: execution; stack
1022 single: exc_info (in module sys)
1023 single: exc_traceback (in module sys)
1024 single: last_traceback (in module sys)
1025 single: sys.exc_info
1026 single: sys.exc_traceback
1027 single: sys.last_traceback
1028
1029 Traceback objects represent a stack trace of an exception. A traceback object
1030 is created when an exception occurs. When the search for an exception handler
1031 unwinds the execution stack, at each unwound level a traceback object is
1032 inserted in front of the current traceback. When an exception handler is
1033 entered, the stack trace is made available to the program. (See section
1034 :ref:`try`.) It is accessible as ``sys.exc_traceback``,
1035 and also as the third item of the tuple returned by ``sys.exc_info()``. The
1036 latter is the preferred interface, since it works correctly when the program is
1037 using multiple threads. When the program contains no suitable handler, the stack
1038 trace is written (nicely formatted) to the standard error stream; if the
1039 interpreter is interactive, it is also made available to the user as
1040 ``sys.last_traceback``.
1041
1042 .. index::
1043 single: tb_next (traceback attribute)
1044 single: tb_frame (traceback attribute)
1045 single: tb_lineno (traceback attribute)
1046 single: tb_lasti (traceback attribute)
1047 statement: try
1048
1049 Special read-only attributes: :attr:`tb_next` is the next level in the stack
1050 trace (towards the frame where the exception occurred), or ``None`` if there is
1051 no next level; :attr:`tb_frame` points to the execution frame of the current
1052 level; :attr:`tb_lineno` gives the line number where the exception occurred;
1053 :attr:`tb_lasti` indicates the precise instruction. The line number and last
1054 instruction in the traceback may differ from the line number of its frame object
1055 if the exception occurred in a :keyword:`try` statement with no matching except
1056 clause or with a finally clause.
1057
1058 Slice objects
1059 .. index:: builtin: slice
1060
1061 Slice objects are used to represent slices when *extended slice syntax* is used.
1062 This is a slice using two colons, or multiple slices or ellipses separated by
1063 commas, e.g., ``a[i:j:step]``, ``a[i:j, k:l]``, or ``a[..., i:j]``. They are
1064 also created by the built-in :func:`slice` function.
1065
1066 .. index::
1067 single: start (slice object attribute)
1068 single: stop (slice object attribute)
1069 single: step (slice object attribute)
1070
1071 Special read-only attributes: :attr:`start` is the lower bound; :attr:`stop` is
1072 the upper bound; :attr:`step` is the step value; each is ``None`` if omitted.
1073 These attributes can have any type.
1074
1075 Slice objects support one method:
1076
1077
1078 .. method:: slice.indices(self, length)
1079
1080 This method takes a single integer argument *length* and computes information
1081 about the extended slice that the slice object would describe if applied to a
1082 sequence of *length* items. It returns a tuple of three integers; respectively
1083 these are the *start* and *stop* indices and the *step* or stride length of the
1084 slice. Missing or out-of-bounds indices are handled in a manner consistent with
1085 regular slices.
1086
1087 .. versionadded:: 2.3
1088
1089 Static method objects
1090 Static method objects provide a way of defeating the transformation of function
1091 objects to method objects described above. A static method object is a wrapper
1092 around any other object, usually a user-defined method object. When a static
1093 method object is retrieved from a class or a class instance, the object actually
1094 returned is the wrapped object, which is not subject to any further
1095 transformation. Static method objects are not themselves callable, although the
1096 objects they wrap usually are. Static method objects are created by the built-in
1097 :func:`staticmethod` constructor.
1098
1099 Class method objects
1100 A class method object, like a static method object, is a wrapper around another
1101 object that alters the way in which that object is retrieved from classes and
1102 class instances. The behaviour of class method objects upon such retrieval is
1103 described above, under "User-defined methods". Class method objects are created
1104 by the built-in :func:`classmethod` constructor.
1105
Georg Brandl8ec7f652007-08-15 14:28:01 +00001106
Georg Brandla7395032007-10-21 12:15:05 +00001107.. _newstyle:
Georg Brandl8ec7f652007-08-15 14:28:01 +00001108
1109New-style and classic classes
1110=============================
1111
Nick Coghlana5107482008-08-04 12:40:59 +00001112Classes and instances come in two flavors: old-style (or classic) and new-style.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001113
1114Up to Python 2.1, old-style classes were the only flavour available to the user.
1115The concept of (old-style) class is unrelated to the concept of type: if *x* is
1116an instance of an old-style class, then ``x.__class__`` designates the class of
1117*x*, but ``type(x)`` is always ``<type 'instance'>``. This reflects the fact
1118that all old-style instances, independently of their class, are implemented with
1119a single built-in type, called ``instance``.
1120
1121New-style classes were introduced in Python 2.2 to unify classes and types. A
Georg Brandl63cdb862008-02-03 12:29:00 +00001122new-style class is neither more nor less than a user-defined type. If *x* is an
Nick Coghlana5107482008-08-04 12:40:59 +00001123instance of a new-style class, then ``type(x)`` is typically the same as
1124``x.__class__`` (although this is not guaranteed - a new-style class instance is
1125permitted to override the value returned for ``x.__class__``).
Georg Brandl8ec7f652007-08-15 14:28:01 +00001126
1127The major motivation for introducing new-style classes is to provide a unified
Nick Coghlana5107482008-08-04 12:40:59 +00001128object model with a full meta-model. It also has a number of practical
Georg Brandl8ec7f652007-08-15 14:28:01 +00001129benefits, like the ability to subclass most built-in types, or the introduction
1130of "descriptors", which enable computed properties.
1131
1132For compatibility reasons, classes are still old-style by default. New-style
1133classes are created by specifying another new-style class (i.e. a type) as a
1134parent class, or the "top-level type" :class:`object` if no other parent is
1135needed. The behaviour of new-style classes differs from that of old-style
1136classes in a number of important details in addition to what :func:`type`
1137returns. Some of these changes are fundamental to the new object model, like
1138the way special methods are invoked. Others are "fixes" that could not be
1139implemented before for compatibility concerns, like the method resolution order
1140in case of multiple inheritance.
1141
Nick Coghlana5107482008-08-04 12:40:59 +00001142While this manual aims to provide comprehensive coverage of Python's class
1143mechanics, it may still be lacking in some areas when it comes to its coverage
1144of new-style classes. Please see http://www.python.org/doc/newstyle/ for
1145sources of additional information.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001146
1147.. index::
Georg Brandl62658332008-01-05 19:29:45 +00001148 single: class; new-style
1149 single: class; classic
1150 single: class; old-style
Georg Brandl8ec7f652007-08-15 14:28:01 +00001151
Ezio Melotti510ff542012-05-03 19:21:40 +03001152Old-style classes are removed in Python 3, leaving only the semantics of
Nick Coghlana5107482008-08-04 12:40:59 +00001153new-style classes.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001154
Georg Brandl8ec7f652007-08-15 14:28:01 +00001155
1156.. _specialnames:
1157
1158Special method names
1159====================
1160
1161.. index::
1162 pair: operator; overloading
1163 single: __getitem__() (mapping object method)
1164
1165A class can implement certain operations that are invoked by special syntax
1166(such as arithmetic operations or subscripting and slicing) by defining methods
1167with special names. This is Python's approach to :dfn:`operator overloading`,
1168allowing classes to define their own behavior with respect to language
1169operators. For instance, if a class defines a method named :meth:`__getitem__`,
Nick Coghlana5107482008-08-04 12:40:59 +00001170and ``x`` is an instance of this class, then ``x[i]`` is roughly equivalent
1171to ``x.__getitem__(i)`` for old-style classes and ``type(x).__getitem__(x, i)``
1172for new-style classes. Except where mentioned, attempts to execute an
1173operation raise an exception when no appropriate method is defined (typically
1174:exc:`AttributeError` or :exc:`TypeError`).
Georg Brandl5768d572007-09-05 13:36:44 +00001175
Georg Brandl8ec7f652007-08-15 14:28:01 +00001176When implementing a class that emulates any built-in type, it is important that
1177the emulation only be implemented to the degree that it makes sense for the
1178object being modelled. For example, some sequences may work well with retrieval
1179of individual elements, but extracting a slice may not make sense. (One example
1180of this is the :class:`NodeList` interface in the W3C's Document Object Model.)
1181
1182
1183.. _customization:
1184
1185Basic customization
1186-------------------
1187
Georg Brandl8ec7f652007-08-15 14:28:01 +00001188.. method:: object.__new__(cls[, ...])
1189
Georg Brandl3fc42262008-12-05 08:06:57 +00001190 .. index:: pair: subclassing; immutable types
1191
Georg Brandl8ec7f652007-08-15 14:28:01 +00001192 Called to create a new instance of class *cls*. :meth:`__new__` is a static
1193 method (special-cased so you need not declare it as such) that takes the class
1194 of which an instance was requested as its first argument. The remaining
1195 arguments are those passed to the object constructor expression (the call to the
1196 class). The return value of :meth:`__new__` should be the new object instance
1197 (usually an instance of *cls*).
1198
1199 Typical implementations create a new instance of the class by invoking the
1200 superclass's :meth:`__new__` method using ``super(currentclass,
1201 cls).__new__(cls[, ...])`` with appropriate arguments and then modifying the
1202 newly-created instance as necessary before returning it.
1203
1204 If :meth:`__new__` returns an instance of *cls*, then the new instance's
1205 :meth:`__init__` method will be invoked like ``__init__(self[, ...])``, where
1206 *self* is the new instance and the remaining arguments are the same as were
1207 passed to :meth:`__new__`.
1208
1209 If :meth:`__new__` does not return an instance of *cls*, then the new instance's
1210 :meth:`__init__` method will not be invoked.
1211
1212 :meth:`__new__` is intended mainly to allow subclasses of immutable types (like
Georg Brandl3ccb49a2008-01-07 19:17:10 +00001213 int, str, or tuple) to customize instance creation. It is also commonly
1214 overridden in custom metaclasses in order to customize class creation.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001215
1216
1217.. method:: object.__init__(self[, ...])
1218
1219 .. index:: pair: class; constructor
1220
1221 Called when the instance is created. The arguments are those passed to the
1222 class constructor expression. If a base class has an :meth:`__init__` method,
1223 the derived class's :meth:`__init__` method, if any, must explicitly call it to
1224 ensure proper initialization of the base class part of the instance; for
1225 example: ``BaseClass.__init__(self, [args...])``. As a special constraint on
1226 constructors, no value may be returned; doing so will cause a :exc:`TypeError`
1227 to be raised at runtime.
1228
1229
1230.. method:: object.__del__(self)
1231
1232 .. index::
1233 single: destructor
1234 statement: del
1235
1236 Called when the instance is about to be destroyed. This is also called a
1237 destructor. If a base class has a :meth:`__del__` method, the derived class's
1238 :meth:`__del__` method, if any, must explicitly call it to ensure proper
1239 deletion of the base class part of the instance. Note that it is possible
1240 (though not recommended!) for the :meth:`__del__` method to postpone destruction
1241 of the instance by creating a new reference to it. It may then be called at a
1242 later time when this new reference is deleted. It is not guaranteed that
1243 :meth:`__del__` methods are called for objects that still exist when the
1244 interpreter exits.
1245
1246 .. note::
1247
1248 ``del x`` doesn't directly call ``x.__del__()`` --- the former decrements
1249 the reference count for ``x`` by one, and the latter is only called when
1250 ``x``'s reference count reaches zero. Some common situations that may
1251 prevent the reference count of an object from going to zero include:
1252 circular references between objects (e.g., a doubly-linked list or a tree
1253 data structure with parent and child pointers); a reference to the object
1254 on the stack frame of a function that caught an exception (the traceback
1255 stored in ``sys.exc_traceback`` keeps the stack frame alive); or a
1256 reference to the object on the stack frame that raised an unhandled
1257 exception in interactive mode (the traceback stored in
1258 ``sys.last_traceback`` keeps the stack frame alive). The first situation
1259 can only be remedied by explicitly breaking the cycles; the latter two
1260 situations can be resolved by storing ``None`` in ``sys.exc_traceback`` or
1261 ``sys.last_traceback``. Circular references which are garbage are
1262 detected when the option cycle detector is enabled (it's on by default),
1263 but can only be cleaned up if there are no Python-level :meth:`__del__`
1264 methods involved. Refer to the documentation for the :mod:`gc` module for
1265 more information about how :meth:`__del__` methods are handled by the
1266 cycle detector, particularly the description of the ``garbage`` value.
1267
1268 .. warning::
1269
1270 Due to the precarious circumstances under which :meth:`__del__` methods are
1271 invoked, exceptions that occur during their execution are ignored, and a warning
1272 is printed to ``sys.stderr`` instead. Also, when :meth:`__del__` is invoked in
1273 response to a module being deleted (e.g., when execution of the program is
1274 done), other globals referenced by the :meth:`__del__` method may already have
Brett Cannon5b0d5532009-01-29 00:54:11 +00001275 been deleted or in the process of being torn down (e.g. the import
1276 machinery shutting down). For this reason, :meth:`__del__` methods
1277 should do the absolute
Georg Brandl8ec7f652007-08-15 14:28:01 +00001278 minimum needed to maintain external invariants. Starting with version 1.5,
1279 Python guarantees that globals whose name begins with a single underscore are
1280 deleted from their module before other globals are deleted; if no other
1281 references to such globals exist, this may help in assuring that imported
1282 modules are still available at the time when the :meth:`__del__` method is
1283 called.
1284
Barry Warsaw1e13eb02012-02-20 20:42:21 -05001285 See also the :option:`-R` command-line option.
1286
Georg Brandl8ec7f652007-08-15 14:28:01 +00001287
1288.. method:: object.__repr__(self)
1289
1290 .. index:: builtin: repr
1291
1292 Called by the :func:`repr` built-in function and by string conversions (reverse
1293 quotes) to compute the "official" string representation of an object. If at all
1294 possible, this should look like a valid Python expression that could be used to
1295 recreate an object with the same value (given an appropriate environment). If
1296 this is not possible, a string of the form ``<...some useful description...>``
1297 should be returned. The return value must be a string object. If a class
1298 defines :meth:`__repr__` but not :meth:`__str__`, then :meth:`__repr__` is also
1299 used when an "informal" string representation of instances of that class is
1300 required.
1301
1302 .. index::
1303 pair: string; conversion
1304 pair: reverse; quotes
1305 pair: backward; quotes
1306 single: back-quotes
1307
1308 This is typically used for debugging, so it is important that the representation
1309 is information-rich and unambiguous.
1310
1311
1312.. method:: object.__str__(self)
1313
1314 .. index::
1315 builtin: str
1316 statement: print
1317
1318 Called by the :func:`str` built-in function and by the :keyword:`print`
1319 statement to compute the "informal" string representation of an object. This
1320 differs from :meth:`__repr__` in that it does not have to be a valid Python
1321 expression: a more convenient or concise representation may be used instead.
1322 The return value must be a string object.
1323
1324
1325.. method:: object.__lt__(self, other)
1326 object.__le__(self, other)
1327 object.__eq__(self, other)
1328 object.__ne__(self, other)
1329 object.__gt__(self, other)
1330 object.__ge__(self, other)
1331
1332 .. versionadded:: 2.1
1333
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001334 .. index::
1335 single: comparisons
1336
Georg Brandl8ec7f652007-08-15 14:28:01 +00001337 These are the so-called "rich comparison" methods, and are called for comparison
1338 operators in preference to :meth:`__cmp__` below. The correspondence between
1339 operator symbols and method names is as follows: ``x<y`` calls ``x.__lt__(y)``,
1340 ``x<=y`` calls ``x.__le__(y)``, ``x==y`` calls ``x.__eq__(y)``, ``x!=y`` and
1341 ``x<>y`` call ``x.__ne__(y)``, ``x>y`` calls ``x.__gt__(y)``, and ``x>=y`` calls
1342 ``x.__ge__(y)``.
1343
1344 A rich comparison method may return the singleton ``NotImplemented`` if it does
1345 not implement the operation for a given pair of arguments. By convention,
1346 ``False`` and ``True`` are returned for a successful comparison. However, these
1347 methods can return any value, so if the comparison operator is used in a Boolean
1348 context (e.g., in the condition of an ``if`` statement), Python will call
1349 :func:`bool` on the value to determine if the result is true or false.
1350
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001351 There are no implied relationships among the comparison operators. The truth
1352 of ``x==y`` does not imply that ``x!=y`` is false. Accordingly, when
1353 defining :meth:`__eq__`, one should also define :meth:`__ne__` so that the
1354 operators will behave as expected. See the paragraph on :meth:`__hash__` for
1355 some important notes on creating :term:`hashable` objects which support
1356 custom comparison operations and are usable as dictionary keys.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001357
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001358 There are no swapped-argument versions of these methods (to be used when the
1359 left argument does not support the operation but the right argument does);
1360 rather, :meth:`__lt__` and :meth:`__gt__` are each other's reflection,
Georg Brandl8ec7f652007-08-15 14:28:01 +00001361 :meth:`__le__` and :meth:`__ge__` are each other's reflection, and
1362 :meth:`__eq__` and :meth:`__ne__` are their own reflection.
1363
1364 Arguments to rich comparison methods are never coerced.
1365
Raymond Hettinger351de802009-03-12 00:25:03 +00001366 To automatically generate ordering operations from a single root operation,
Raymond Hettinger06bc0b62010-04-04 22:24:03 +00001367 see :func:`functools.total_ordering`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001368
1369.. method:: object.__cmp__(self, other)
1370
1371 .. index::
1372 builtin: cmp
1373 single: comparisons
1374
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001375 Called by comparison operations if rich comparison (see above) is not
1376 defined. Should return a negative integer if ``self < other``, zero if
1377 ``self == other``, a positive integer if ``self > other``. If no
1378 :meth:`__cmp__`, :meth:`__eq__` or :meth:`__ne__` operation is defined, class
1379 instances are compared by object identity ("address"). See also the
1380 description of :meth:`__hash__` for some important notes on creating
1381 :term:`hashable` objects which support custom comparison operations and are
1382 usable as dictionary keys. (Note: the restriction that exceptions are not
1383 propagated by :meth:`__cmp__` has been removed since Python 1.5.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001384
1385
1386.. method:: object.__rcmp__(self, other)
1387
1388 .. versionchanged:: 2.1
1389 No longer supported.
1390
1391
1392.. method:: object.__hash__(self)
1393
1394 .. index::
1395 object: dictionary
1396 builtin: hash
1397
Benjamin Peterson233bb002008-11-17 22:05:19 +00001398 Called by built-in function :func:`hash` and for operations on members of
1399 hashed collections including :class:`set`, :class:`frozenset`, and
1400 :class:`dict`. :meth:`__hash__` should return an integer. The only required
1401 property is that objects which compare equal have the same hash value; it is
1402 advised to somehow mix together (e.g. using exclusive or) the hash values for
1403 the components of the object that also play a part in comparison of objects.
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001404
1405 If a class does not define a :meth:`__cmp__` or :meth:`__eq__` method it
1406 should not define a :meth:`__hash__` operation either; if it defines
1407 :meth:`__cmp__` or :meth:`__eq__` but not :meth:`__hash__`, its instances
Benjamin Peterson233bb002008-11-17 22:05:19 +00001408 will not be usable in hashed collections. If a class defines mutable objects
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001409 and implements a :meth:`__cmp__` or :meth:`__eq__` method, it should not
Benjamin Peterson233bb002008-11-17 22:05:19 +00001410 implement :meth:`__hash__`, since hashable collection implementations require
1411 that a object's hash value is immutable (if the object's hash value changes,
1412 it will be in the wrong hash bucket).
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001413
1414 User-defined classes have :meth:`__cmp__` and :meth:`__hash__` methods
Nick Coghlan82358692008-08-31 13:10:50 +00001415 by default; with them, all objects compare unequal (except with themselves)
1416 and ``x.__hash__()`` returns ``id(x)``.
1417
1418 Classes which inherit a :meth:`__hash__` method from a parent class but
1419 change the meaning of :meth:`__cmp__` or :meth:`__eq__` such that the hash
1420 value returned is no longer appropriate (e.g. by switching to a value-based
1421 concept of equality instead of the default identity based equality) can
Benjamin Peterson233bb002008-11-17 22:05:19 +00001422 explicitly flag themselves as being unhashable by setting ``__hash__ = None``
1423 in the class definition. Doing so means that not only will instances of the
1424 class raise an appropriate :exc:`TypeError` when a program attempts to
1425 retrieve their hash value, but they will also be correctly identified as
1426 unhashable when checking ``isinstance(obj, collections.Hashable)`` (unlike
1427 classes which define their own :meth:`__hash__` to explicitly raise
1428 :exc:`TypeError`).
Georg Brandl8ec7f652007-08-15 14:28:01 +00001429
1430 .. versionchanged:: 2.5
Georg Brandl7c3e79f2007-11-02 20:06:17 +00001431 :meth:`__hash__` may now also return a long integer object; the 32-bit
1432 integer is then derived from the hash of that object.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001433
Nick Coghlan82358692008-08-31 13:10:50 +00001434 .. versionchanged:: 2.6
1435 :attr:`__hash__` may now be set to :const:`None` to explicitly flag
1436 instances of a class as unhashable.
1437
Georg Brandl8ec7f652007-08-15 14:28:01 +00001438
1439.. method:: object.__nonzero__(self)
1440
1441 .. index:: single: __len__() (mapping object method)
1442
Georg Brandl3259ef32009-03-15 21:37:16 +00001443 Called to implement truth value testing and the built-in operation ``bool()``;
Georg Brandl8ec7f652007-08-15 14:28:01 +00001444 should return ``False`` or ``True``, or their integer equivalents ``0`` or
Georg Brandl3259ef32009-03-15 21:37:16 +00001445 ``1``. When this method is not defined, :meth:`__len__` is called, if it is
1446 defined, and the object is considered true if its result is nonzero.
1447 If a class defines neither :meth:`__len__` nor :meth:`__nonzero__`, all its
1448 instances are considered true.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001449
1450
1451.. method:: object.__unicode__(self)
1452
1453 .. index:: builtin: unicode
1454
Georg Brandld7d4fd72009-07-26 14:37:28 +00001455 Called to implement :func:`unicode` built-in; should return a Unicode object.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001456 When this method is not defined, string conversion is attempted, and the result
1457 of string conversion is converted to Unicode using the system default encoding.
1458
1459
1460.. _attribute-access:
1461
1462Customizing attribute access
1463----------------------------
1464
1465The following methods can be defined to customize the meaning of attribute
1466access (use of, assignment to, or deletion of ``x.name``) for class instances.
1467
1468
1469.. method:: object.__getattr__(self, name)
1470
1471 Called when an attribute lookup has not found the attribute in the usual places
1472 (i.e. it is not an instance attribute nor is it found in the class tree for
1473 ``self``). ``name`` is the attribute name. This method should return the
1474 (computed) attribute value or raise an :exc:`AttributeError` exception.
1475
1476 .. index:: single: __setattr__() (object method)
1477
1478 Note that if the attribute is found through the normal mechanism,
1479 :meth:`__getattr__` is not called. (This is an intentional asymmetry between
1480 :meth:`__getattr__` and :meth:`__setattr__`.) This is done both for efficiency
Georg Brandlc1768142008-08-30 09:52:44 +00001481 reasons and because otherwise :meth:`__getattr__` would have no way to access
Georg Brandl8ec7f652007-08-15 14:28:01 +00001482 other attributes of the instance. Note that at least for instance variables,
1483 you can fake total control by not inserting any values in the instance attribute
1484 dictionary (but instead inserting them in another object). See the
1485 :meth:`__getattribute__` method below for a way to actually get total control in
1486 new-style classes.
1487
1488
1489.. method:: object.__setattr__(self, name, value)
1490
1491 Called when an attribute assignment is attempted. This is called instead of the
1492 normal mechanism (i.e. store the value in the instance dictionary). *name* is
1493 the attribute name, *value* is the value to be assigned to it.
1494
1495 .. index:: single: __dict__ (instance attribute)
1496
1497 If :meth:`__setattr__` wants to assign to an instance attribute, it should not
1498 simply execute ``self.name = value`` --- this would cause a recursive call to
1499 itself. Instead, it should insert the value in the dictionary of instance
1500 attributes, e.g., ``self.__dict__[name] = value``. For new-style classes,
1501 rather than accessing the instance dictionary, it should call the base class
1502 method with the same name, for example, ``object.__setattr__(self, name,
1503 value)``.
1504
1505
1506.. method:: object.__delattr__(self, name)
1507
1508 Like :meth:`__setattr__` but for attribute deletion instead of assignment. This
1509 should only be implemented if ``del obj.name`` is meaningful for the object.
1510
1511
1512.. _new-style-attribute-access:
1513
1514More attribute access for new-style classes
1515^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1516
1517The following methods only apply to new-style classes.
1518
1519
1520.. method:: object.__getattribute__(self, name)
1521
1522 Called unconditionally to implement attribute accesses for instances of the
1523 class. If the class also defines :meth:`__getattr__`, the latter will not be
1524 called unless :meth:`__getattribute__` either calls it explicitly or raises an
1525 :exc:`AttributeError`. This method should return the (computed) attribute value
1526 or raise an :exc:`AttributeError` exception. In order to avoid infinite
1527 recursion in this method, its implementation should always call the base class
1528 method with the same name to access any attributes it needs, for example,
1529 ``object.__getattribute__(self, name)``.
1530
Nick Coghlana5107482008-08-04 12:40:59 +00001531 .. note::
1532
1533 This method may still be bypassed when looking up special methods as the
Georg Brandld7d4fd72009-07-26 14:37:28 +00001534 result of implicit invocation via language syntax or built-in functions.
Nick Coghlana5107482008-08-04 12:40:59 +00001535 See :ref:`new-style-special-lookup`.
1536
Georg Brandl8ec7f652007-08-15 14:28:01 +00001537
1538.. _descriptors:
1539
1540Implementing Descriptors
1541^^^^^^^^^^^^^^^^^^^^^^^^
1542
1543The following methods only apply when an instance of the class containing the
Raymond Hettinger1fd26522011-03-22 17:51:57 -07001544method (a so-called *descriptor* class) appears in an *owner* class (the
1545descriptor must be in either the owner's class dictionary or in the class
1546dictionary for one of its parents). In the examples below, "the attribute"
1547refers to the attribute whose name is the key of the property in the owner
1548class' :attr:`__dict__`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001549
1550
1551.. method:: object.__get__(self, instance, owner)
1552
1553 Called to get the attribute of the owner class (class attribute access) or of an
1554 instance of that class (instance attribute access). *owner* is always the owner
1555 class, while *instance* is the instance that the attribute was accessed through,
1556 or ``None`` when the attribute is accessed through the *owner*. This method
1557 should return the (computed) attribute value or raise an :exc:`AttributeError`
1558 exception.
1559
1560
1561.. method:: object.__set__(self, instance, value)
1562
1563 Called to set the attribute on an instance *instance* of the owner class to a
1564 new value, *value*.
1565
1566
1567.. method:: object.__delete__(self, instance)
1568
1569 Called to delete the attribute on an instance *instance* of the owner class.
1570
1571
1572.. _descriptor-invocation:
1573
1574Invoking Descriptors
1575^^^^^^^^^^^^^^^^^^^^
1576
1577In general, a descriptor is an object attribute with "binding behavior", one
1578whose attribute access has been overridden by methods in the descriptor
1579protocol: :meth:`__get__`, :meth:`__set__`, and :meth:`__delete__`. If any of
1580those methods are defined for an object, it is said to be a descriptor.
1581
1582The default behavior for attribute access is to get, set, or delete the
1583attribute from an object's dictionary. For instance, ``a.x`` has a lookup chain
1584starting with ``a.__dict__['x']``, then ``type(a).__dict__['x']``, and
1585continuing through the base classes of ``type(a)`` excluding metaclasses.
1586
1587However, if the looked-up value is an object defining one of the descriptor
1588methods, then Python may override the default behavior and invoke the descriptor
1589method instead. Where this occurs in the precedence chain depends on which
1590descriptor methods were defined and how they were called. Note that descriptors
1591are only invoked for new style objects or classes (ones that subclass
1592:class:`object()` or :class:`type()`).
1593
1594The starting point for descriptor invocation is a binding, ``a.x``. How the
1595arguments are assembled depends on ``a``:
1596
1597Direct Call
1598 The simplest and least common call is when user code directly invokes a
1599 descriptor method: ``x.__get__(a)``.
1600
1601Instance Binding
1602 If binding to a new-style object instance, ``a.x`` is transformed into the call:
1603 ``type(a).__dict__['x'].__get__(a, type(a))``.
1604
1605Class Binding
1606 If binding to a new-style class, ``A.x`` is transformed into the call:
1607 ``A.__dict__['x'].__get__(None, A)``.
1608
1609Super Binding
1610 If ``a`` is an instance of :class:`super`, then the binding ``super(B,
1611 obj).m()`` searches ``obj.__class__.__mro__`` for the base class ``A``
1612 immediately preceding ``B`` and then invokes the descriptor with the call:
Raymond Hettingerb76f6202011-03-22 15:28:45 -07001613 ``A.__dict__['m'].__get__(obj, obj.__class__)``.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001614
1615For instance bindings, the precedence of descriptor invocation depends on the
Benjamin Peterson9179dab2010-01-18 23:07:56 +00001616which descriptor methods are defined. A descriptor can define any combination
1617of :meth:`__get__`, :meth:`__set__` and :meth:`__delete__`. If it does not
1618define :meth:`__get__`, then accessing the attribute will return the descriptor
1619object itself unless there is a value in the object's instance dictionary. If
1620the descriptor defines :meth:`__set__` and/or :meth:`__delete__`, it is a data
1621descriptor; if it defines neither, it is a non-data descriptor. Normally, data
1622descriptors define both :meth:`__get__` and :meth:`__set__`, while non-data
1623descriptors have just the :meth:`__get__` method. Data descriptors with
1624:meth:`__set__` and :meth:`__get__` defined always override a redefinition in an
Georg Brandl8ec7f652007-08-15 14:28:01 +00001625instance dictionary. In contrast, non-data descriptors can be overridden by
Benjamin Peterson9179dab2010-01-18 23:07:56 +00001626instances.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001627
1628Python methods (including :func:`staticmethod` and :func:`classmethod`) are
1629implemented as non-data descriptors. Accordingly, instances can redefine and
1630override methods. This allows individual instances to acquire behaviors that
1631differ from other instances of the same class.
1632
1633The :func:`property` function is implemented as a data descriptor. Accordingly,
1634instances cannot override the behavior of a property.
1635
1636
1637.. _slots:
1638
1639__slots__
1640^^^^^^^^^
1641
1642By default, instances of both old and new-style classes have a dictionary for
1643attribute storage. This wastes space for objects having very few instance
1644variables. The space consumption can become acute when creating large numbers
1645of instances.
1646
1647The default can be overridden by defining *__slots__* in a new-style class
1648definition. The *__slots__* declaration takes a sequence of instance variables
1649and reserves just enough space in each instance to hold a value for each
1650variable. Space is saved because *__dict__* is not created for each instance.
1651
1652
1653.. data:: __slots__
1654
1655 This class variable can be assigned a string, iterable, or sequence of strings
1656 with variable names used by instances. If defined in a new-style class,
1657 *__slots__* reserves space for the declared variables and prevents the automatic
1658 creation of *__dict__* and *__weakref__* for each instance.
1659
1660 .. versionadded:: 2.2
1661
1662Notes on using *__slots__*
1663
Georg Brandl3de1e692008-07-19 13:09:42 +00001664* When inheriting from a class without *__slots__*, the *__dict__* attribute of
1665 that class will always be accessible, so a *__slots__* definition in the
1666 subclass is meaningless.
1667
Georg Brandl8ec7f652007-08-15 14:28:01 +00001668* Without a *__dict__* variable, instances cannot be assigned new variables not
1669 listed in the *__slots__* definition. Attempts to assign to an unlisted
1670 variable name raises :exc:`AttributeError`. If dynamic assignment of new
1671 variables is desired, then add ``'__dict__'`` to the sequence of strings in the
1672 *__slots__* declaration.
1673
1674 .. versionchanged:: 2.3
1675 Previously, adding ``'__dict__'`` to the *__slots__* declaration would not
1676 enable the assignment of new attributes not specifically listed in the sequence
1677 of instance variable names.
1678
1679* Without a *__weakref__* variable for each instance, classes defining
1680 *__slots__* do not support weak references to its instances. If weak reference
1681 support is needed, then add ``'__weakref__'`` to the sequence of strings in the
1682 *__slots__* declaration.
1683
1684 .. versionchanged:: 2.3
1685 Previously, adding ``'__weakref__'`` to the *__slots__* declaration would not
1686 enable support for weak references.
1687
1688* *__slots__* are implemented at the class level by creating descriptors
1689 (:ref:`descriptors`) for each variable name. As a result, class attributes
1690 cannot be used to set default values for instance variables defined by
1691 *__slots__*; otherwise, the class attribute would overwrite the descriptor
1692 assignment.
1693
Georg Brandl030d6582009-10-22 15:27:24 +00001694* The action of a *__slots__* declaration is limited to the class where it is
1695 defined. As a result, subclasses will have a *__dict__* unless they also define
1696 *__slots__* (which must only contain names of any *additional* slots).
1697
Georg Brandl8ec7f652007-08-15 14:28:01 +00001698* If a class defines a slot also defined in a base class, the instance variable
1699 defined by the base class slot is inaccessible (except by retrieving its
1700 descriptor directly from the base class). This renders the meaning of the
1701 program undefined. In the future, a check may be added to prevent this.
1702
Benjamin Petersonc756dcd2008-10-23 21:43:48 +00001703* Nonempty *__slots__* does not work for classes derived from "variable-length"
1704 built-in types such as :class:`long`, :class:`str` and :class:`tuple`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001705
1706* Any non-string iterable may be assigned to *__slots__*. Mappings may also be
1707 used; however, in the future, special meaning may be assigned to the values
1708 corresponding to each key.
1709
1710* *__class__* assignment works only if both classes have the same *__slots__*.
1711
1712 .. versionchanged:: 2.6
1713 Previously, *__class__* assignment raised an error if either new or old class
1714 had *__slots__*.
1715
1716
1717.. _metaclasses:
1718
1719Customizing class creation
1720--------------------------
1721
1722By default, new-style classes are constructed using :func:`type`. A class
1723definition is read into a separate namespace and the value of class name is
1724bound to the result of ``type(name, bases, dict)``.
1725
1726When the class definition is read, if *__metaclass__* is defined then the
Georg Brandl3ccb49a2008-01-07 19:17:10 +00001727callable assigned to it will be called instead of :func:`type`. This allows
Georg Brandl8ec7f652007-08-15 14:28:01 +00001728classes or functions to be written which monitor or alter the class creation
1729process:
1730
1731* Modifying the class dictionary prior to the class being created.
1732
1733* Returning an instance of another class -- essentially performing the role of a
1734 factory function.
1735
Georg Brandl3ccb49a2008-01-07 19:17:10 +00001736These steps will have to be performed in the metaclass's :meth:`__new__` method
1737-- :meth:`type.__new__` can then be called from this method to create a class
1738with different properties. This example adds a new element to the class
1739dictionary before creating the class::
1740
1741 class metacls(type):
1742 def __new__(mcs, name, bases, dict):
1743 dict['foo'] = 'metacls was here'
1744 return type.__new__(mcs, name, bases, dict)
1745
1746You can of course also override other class methods (or add new methods); for
1747example defining a custom :meth:`__call__` method in the metaclass allows custom
1748behavior when the class is called, e.g. not always creating a new instance.
1749
Georg Brandl8ec7f652007-08-15 14:28:01 +00001750
1751.. data:: __metaclass__
1752
1753 This variable can be any callable accepting arguments for ``name``, ``bases``,
1754 and ``dict``. Upon class creation, the callable is used instead of the built-in
1755 :func:`type`.
1756
1757 .. versionadded:: 2.2
1758
1759The appropriate metaclass is determined by the following precedence rules:
1760
1761* If ``dict['__metaclass__']`` exists, it is used.
1762
1763* Otherwise, if there is at least one base class, its metaclass is used (this
1764 looks for a *__class__* attribute first and if not found, uses its type).
1765
1766* Otherwise, if a global variable named __metaclass__ exists, it is used.
1767
1768* Otherwise, the old-style, classic metaclass (types.ClassType) is used.
1769
1770The potential uses for metaclasses are boundless. Some ideas that have been
1771explored including logging, interface checking, automatic delegation, automatic
1772property creation, proxies, frameworks, and automatic resource
1773locking/synchronization.
1774
1775
Georg Brandl710a5db2010-04-14 21:34:44 +00001776Customizing instance and subclass checks
1777----------------------------------------
1778
1779.. versionadded:: 2.6
1780
1781The following methods are used to override the default behavior of the
1782:func:`isinstance` and :func:`issubclass` built-in functions.
1783
1784In particular, the metaclass :class:`abc.ABCMeta` implements these methods in
1785order to allow the addition of Abstract Base Classes (ABCs) as "virtual base
Andrew M. Kuchlingb3437c92010-04-30 13:46:55 +00001786classes" to any class or type (including built-in types), including other
Georg Brandl710a5db2010-04-14 21:34:44 +00001787ABCs.
1788
1789.. method:: class.__instancecheck__(self, instance)
1790
1791 Return true if *instance* should be considered a (direct or indirect)
1792 instance of *class*. If defined, called to implement ``isinstance(instance,
1793 class)``.
1794
1795
1796.. method:: class.__subclasscheck__(self, subclass)
1797
1798 Return true if *subclass* should be considered a (direct or indirect)
1799 subclass of *class*. If defined, called to implement ``issubclass(subclass,
1800 class)``.
1801
1802
1803Note that these methods are looked up on the type (metaclass) of a class. They
1804cannot be defined as class methods in the actual class. This is consistent with
Andrew M. Kuchlingb3437c92010-04-30 13:46:55 +00001805the lookup of special methods that are called on instances, only in this
Georg Brandl9f5fd602010-04-14 21:46:45 +00001806case the instance is itself a class.
Georg Brandl710a5db2010-04-14 21:34:44 +00001807
1808.. seealso::
1809
1810 :pep:`3119` - Introducing Abstract Base Classes
1811 Includes the specification for customizing :func:`isinstance` and
1812 :func:`issubclass` behavior through :meth:`__instancecheck__` and
1813 :meth:`__subclasscheck__`, with motivation for this functionality in the
1814 context of adding Abstract Base Classes (see the :mod:`abc` module) to the
1815 language.
1816
1817
Georg Brandl8ec7f652007-08-15 14:28:01 +00001818.. _callable-types:
1819
1820Emulating callable objects
1821--------------------------
1822
1823
1824.. method:: object.__call__(self[, args...])
1825
1826 .. index:: pair: call; instance
1827
1828 Called when the instance is "called" as a function; if this method is defined,
1829 ``x(arg1, arg2, ...)`` is a shorthand for ``x.__call__(arg1, arg2, ...)``.
1830
1831
1832.. _sequence-types:
1833
1834Emulating container types
1835-------------------------
1836
1837The following methods can be defined to implement container objects. Containers
1838usually are sequences (such as lists or tuples) or mappings (like dictionaries),
1839but can represent other containers as well. The first set of methods is used
1840either to emulate a sequence or to emulate a mapping; the difference is that for
1841a sequence, the allowable keys should be the integers *k* for which ``0 <= k <
1842N`` where *N* is the length of the sequence, or slice objects, which define a
1843range of items. (For backwards compatibility, the method :meth:`__getslice__`
1844(see below) can also be defined to handle simple, but not extended slices.) It
1845is also recommended that mappings provide the methods :meth:`keys`,
1846:meth:`values`, :meth:`items`, :meth:`has_key`, :meth:`get`, :meth:`clear`,
1847:meth:`setdefault`, :meth:`iterkeys`, :meth:`itervalues`, :meth:`iteritems`,
1848:meth:`pop`, :meth:`popitem`, :meth:`copy`, and :meth:`update` behaving similar
1849to those for Python's standard dictionary objects. The :mod:`UserDict` module
1850provides a :class:`DictMixin` class to help create those methods from a base set
1851of :meth:`__getitem__`, :meth:`__setitem__`, :meth:`__delitem__`, and
1852:meth:`keys`. Mutable sequences should provide methods :meth:`append`,
1853:meth:`count`, :meth:`index`, :meth:`extend`, :meth:`insert`, :meth:`pop`,
1854:meth:`remove`, :meth:`reverse` and :meth:`sort`, like Python standard list
1855objects. Finally, sequence types should implement addition (meaning
1856concatenation) and multiplication (meaning repetition) by defining the methods
1857:meth:`__add__`, :meth:`__radd__`, :meth:`__iadd__`, :meth:`__mul__`,
1858:meth:`__rmul__` and :meth:`__imul__` described below; they should not define
1859:meth:`__coerce__` or other numerical operators. It is recommended that both
1860mappings and sequences implement the :meth:`__contains__` method to allow
1861efficient use of the ``in`` operator; for mappings, ``in`` should be equivalent
1862of :meth:`has_key`; for sequences, it should search through the values. It is
1863further recommended that both mappings and sequences implement the
1864:meth:`__iter__` method to allow efficient iteration through the container; for
1865mappings, :meth:`__iter__` should be the same as :meth:`iterkeys`; for
1866sequences, it should iterate through the values.
1867
1868
1869.. method:: object.__len__(self)
1870
1871 .. index::
1872 builtin: len
1873 single: __nonzero__() (object method)
1874
1875 Called to implement the built-in function :func:`len`. Should return the length
1876 of the object, an integer ``>=`` 0. Also, an object that doesn't define a
1877 :meth:`__nonzero__` method and whose :meth:`__len__` method returns zero is
1878 considered to be false in a Boolean context.
1879
1880
1881.. method:: object.__getitem__(self, key)
1882
1883 .. index:: object: slice
1884
1885 Called to implement evaluation of ``self[key]``. For sequence types, the
1886 accepted keys should be integers and slice objects. Note that the special
1887 interpretation of negative indexes (if the class wishes to emulate a sequence
1888 type) is up to the :meth:`__getitem__` method. If *key* is of an inappropriate
1889 type, :exc:`TypeError` may be raised; if of a value outside the set of indexes
1890 for the sequence (after any special interpretation of negative values),
1891 :exc:`IndexError` should be raised. For mapping types, if *key* is missing (not
1892 in the container), :exc:`KeyError` should be raised.
1893
1894 .. note::
1895
1896 :keyword:`for` loops expect that an :exc:`IndexError` will be raised for illegal
1897 indexes to allow proper detection of the end of the sequence.
1898
1899
1900.. method:: object.__setitem__(self, key, value)
1901
1902 Called to implement assignment to ``self[key]``. Same note as for
1903 :meth:`__getitem__`. This should only be implemented for mappings if the
1904 objects support changes to the values for keys, or if new keys can be added, or
1905 for sequences if elements can be replaced. The same exceptions should be raised
1906 for improper *key* values as for the :meth:`__getitem__` method.
1907
1908
1909.. method:: object.__delitem__(self, key)
1910
1911 Called to implement deletion of ``self[key]``. Same note as for
1912 :meth:`__getitem__`. This should only be implemented for mappings if the
1913 objects support removal of keys, or for sequences if elements can be removed
1914 from the sequence. The same exceptions should be raised for improper *key*
1915 values as for the :meth:`__getitem__` method.
1916
1917
1918.. method:: object.__iter__(self)
1919
1920 This method is called when an iterator is required for a container. This method
1921 should return a new iterator object that can iterate over all the objects in the
1922 container. For mappings, it should iterate over the keys of the container, and
1923 should also be made available as the method :meth:`iterkeys`.
1924
1925 Iterator objects also need to implement this method; they are required to return
1926 themselves. For more information on iterator objects, see :ref:`typeiter`.
1927
Georg Brandl81de0d22008-01-06 16:17:56 +00001928
1929.. method:: object.__reversed__(self)
1930
Georg Brandld7d4fd72009-07-26 14:37:28 +00001931 Called (if present) by the :func:`reversed` built-in to implement
Georg Brandl81de0d22008-01-06 16:17:56 +00001932 reverse iteration. It should return a new iterator object that iterates
1933 over all the objects in the container in reverse order.
1934
Georg Brandl8dc3b442009-05-16 11:13:21 +00001935 If the :meth:`__reversed__` method is not provided, the :func:`reversed`
Georg Brandld7d4fd72009-07-26 14:37:28 +00001936 built-in will fall back to using the sequence protocol (:meth:`__len__` and
Georg Brandl8dc3b442009-05-16 11:13:21 +00001937 :meth:`__getitem__`). Objects that support the sequence protocol should
1938 only provide :meth:`__reversed__` if they can provide an implementation
1939 that is more efficient than the one provided by :func:`reversed`.
Georg Brandl81de0d22008-01-06 16:17:56 +00001940
1941 .. versionadded:: 2.6
1942
1943
Georg Brandl8ec7f652007-08-15 14:28:01 +00001944The membership test operators (:keyword:`in` and :keyword:`not in`) are normally
1945implemented as an iteration through a sequence. However, container objects can
1946supply the following special method with a more efficient implementation, which
1947also does not require the object be a sequence.
1948
Georg Brandl8ec7f652007-08-15 14:28:01 +00001949.. method:: object.__contains__(self, item)
1950
Georg Brandl2eee1d42009-10-22 15:00:06 +00001951 Called to implement membership test operators. Should return true if *item*
1952 is in *self*, false otherwise. For mapping objects, this should consider the
1953 keys of the mapping rather than the values or the key-item pairs.
1954
1955 For objects that don't define :meth:`__contains__`, the membership test first
1956 tries iteration via :meth:`__iter__`, then the old sequence iteration
1957 protocol via :meth:`__getitem__`, see :ref:`this section in the language
1958 reference <membership-test-details>`.
Georg Brandl8ec7f652007-08-15 14:28:01 +00001959
1960
1961.. _sequence-methods:
1962
1963Additional methods for emulation of sequence types
1964--------------------------------------------------
1965
1966The following optional methods can be defined to further emulate sequence
1967objects. Immutable sequences methods should at most only define
1968:meth:`__getslice__`; mutable sequences might define all three methods.
1969
1970
1971.. method:: object.__getslice__(self, i, j)
1972
1973 .. deprecated:: 2.0
1974 Support slice objects as parameters to the :meth:`__getitem__` method.
Georg Brandl8d9e8452007-08-23 20:35:00 +00001975 (However, built-in types in CPython currently still implement
1976 :meth:`__getslice__`. Therefore, you have to override it in derived
1977 classes when implementing slicing.)
Georg Brandl8ec7f652007-08-15 14:28:01 +00001978
1979 Called to implement evaluation of ``self[i:j]``. The returned object should be
1980 of the same type as *self*. Note that missing *i* or *j* in the slice
1981 expression are replaced by zero or ``sys.maxint``, respectively. If negative
1982 indexes are used in the slice, the length of the sequence is added to that
1983 index. If the instance does not implement the :meth:`__len__` method, an
1984 :exc:`AttributeError` is raised. No guarantee is made that indexes adjusted this
1985 way are not still negative. Indexes which are greater than the length of the
1986 sequence are not modified. If no :meth:`__getslice__` is found, a slice object
1987 is created instead, and passed to :meth:`__getitem__` instead.
1988
1989
1990.. method:: object.__setslice__(self, i, j, sequence)
1991
1992 Called to implement assignment to ``self[i:j]``. Same notes for *i* and *j* as
1993 for :meth:`__getslice__`.
1994
1995 This method is deprecated. If no :meth:`__setslice__` is found, or for extended
1996 slicing of the form ``self[i:j:k]``, a slice object is created, and passed to
1997 :meth:`__setitem__`, instead of :meth:`__setslice__` being called.
1998
1999
2000.. method:: object.__delslice__(self, i, j)
2001
2002 Called to implement deletion of ``self[i:j]``. Same notes for *i* and *j* as for
2003 :meth:`__getslice__`. This method is deprecated. If no :meth:`__delslice__` is
2004 found, or for extended slicing of the form ``self[i:j:k]``, a slice object is
2005 created, and passed to :meth:`__delitem__`, instead of :meth:`__delslice__`
2006 being called.
2007
2008Notice that these methods are only invoked when a single slice with a single
2009colon is used, and the slice method is available. For slice operations
2010involving extended slice notation, or in absence of the slice methods,
2011:meth:`__getitem__`, :meth:`__setitem__` or :meth:`__delitem__` is called with a
2012slice object as argument.
2013
2014The following example demonstrate how to make your program or module compatible
2015with earlier versions of Python (assuming that methods :meth:`__getitem__`,
2016:meth:`__setitem__` and :meth:`__delitem__` support slice objects as
2017arguments)::
2018
2019 class MyClass:
2020 ...
2021 def __getitem__(self, index):
2022 ...
2023 def __setitem__(self, index, value):
2024 ...
2025 def __delitem__(self, index):
2026 ...
2027
2028 if sys.version_info < (2, 0):
2029 # They won't be defined if version is at least 2.0 final
2030
2031 def __getslice__(self, i, j):
2032 return self[max(0, i):max(0, j):]
2033 def __setslice__(self, i, j, seq):
2034 self[max(0, i):max(0, j):] = seq
2035 def __delslice__(self, i, j):
2036 del self[max(0, i):max(0, j):]
2037 ...
2038
2039Note the calls to :func:`max`; these are necessary because of the handling of
2040negative indices before the :meth:`__\*slice__` methods are called. When
2041negative indexes are used, the :meth:`__\*item__` methods receive them as
2042provided, but the :meth:`__\*slice__` methods get a "cooked" form of the index
2043values. For each negative index value, the length of the sequence is added to
2044the index before calling the method (which may still result in a negative
2045index); this is the customary handling of negative indexes by the built-in
2046sequence types, and the :meth:`__\*item__` methods are expected to do this as
2047well. However, since they should already be doing that, negative indexes cannot
2048be passed in; they must be constrained to the bounds of the sequence before
2049being passed to the :meth:`__\*item__` methods. Calling ``max(0, i)``
2050conveniently returns the proper value.
2051
2052
2053.. _numeric-types:
2054
2055Emulating numeric types
2056-----------------------
2057
2058The following methods can be defined to emulate numeric objects. Methods
2059corresponding to operations that are not supported by the particular kind of
2060number implemented (e.g., bitwise operations for non-integral numbers) should be
2061left undefined.
2062
2063
2064.. method:: object.__add__(self, other)
2065 object.__sub__(self, other)
2066 object.__mul__(self, other)
2067 object.__floordiv__(self, other)
2068 object.__mod__(self, other)
2069 object.__divmod__(self, other)
2070 object.__pow__(self, other[, modulo])
2071 object.__lshift__(self, other)
2072 object.__rshift__(self, other)
2073 object.__and__(self, other)
2074 object.__xor__(self, other)
2075 object.__or__(self, other)
2076
2077 .. index::
2078 builtin: divmod
2079 builtin: pow
2080 builtin: pow
2081
2082 These methods are called to implement the binary arithmetic operations (``+``,
2083 ``-``, ``*``, ``//``, ``%``, :func:`divmod`, :func:`pow`, ``**``, ``<<``,
2084 ``>>``, ``&``, ``^``, ``|``). For instance, to evaluate the expression
Brett Cannon93298462008-08-14 05:55:18 +00002085 ``x + y``, where *x* is an instance of a class that has an :meth:`__add__`
Georg Brandl8ec7f652007-08-15 14:28:01 +00002086 method, ``x.__add__(y)`` is called. The :meth:`__divmod__` method should be the
2087 equivalent to using :meth:`__floordiv__` and :meth:`__mod__`; it should not be
2088 related to :meth:`__truediv__` (described below). Note that :meth:`__pow__`
2089 should be defined to accept an optional third argument if the ternary version of
2090 the built-in :func:`pow` function is to be supported.
2091
2092 If one of those methods does not support the operation with the supplied
2093 arguments, it should return ``NotImplemented``.
2094
2095
2096.. method:: object.__div__(self, other)
2097 object.__truediv__(self, other)
2098
2099 The division operator (``/``) is implemented by these methods. The
2100 :meth:`__truediv__` method is used when ``__future__.division`` is in effect,
2101 otherwise :meth:`__div__` is used. If only one of these two methods is defined,
2102 the object will not support division in the alternate context; :exc:`TypeError`
2103 will be raised instead.
2104
2105
2106.. method:: object.__radd__(self, other)
2107 object.__rsub__(self, other)
2108 object.__rmul__(self, other)
2109 object.__rdiv__(self, other)
2110 object.__rtruediv__(self, other)
2111 object.__rfloordiv__(self, other)
2112 object.__rmod__(self, other)
2113 object.__rdivmod__(self, other)
2114 object.__rpow__(self, other)
2115 object.__rlshift__(self, other)
2116 object.__rrshift__(self, other)
2117 object.__rand__(self, other)
2118 object.__rxor__(self, other)
2119 object.__ror__(self, other)
2120
2121 .. index::
2122 builtin: divmod
2123 builtin: pow
2124
2125 These methods are called to implement the binary arithmetic operations (``+``,
2126 ``-``, ``*``, ``/``, ``%``, :func:`divmod`, :func:`pow`, ``**``, ``<<``, ``>>``,
2127 ``&``, ``^``, ``|``) with reflected (swapped) operands. These functions are
2128 only called if the left operand does not support the corresponding operation and
2129 the operands are of different types. [#]_ For instance, to evaluate the
Brett Cannon93298462008-08-14 05:55:18 +00002130 expression ``x - y``, where *y* is an instance of a class that has an
Georg Brandl8ec7f652007-08-15 14:28:01 +00002131 :meth:`__rsub__` method, ``y.__rsub__(x)`` is called if ``x.__sub__(y)`` returns
2132 *NotImplemented*.
2133
2134 .. index:: builtin: pow
2135
2136 Note that ternary :func:`pow` will not try calling :meth:`__rpow__` (the
2137 coercion rules would become too complicated).
2138
2139 .. note::
2140
2141 If the right operand's type is a subclass of the left operand's type and that
2142 subclass provides the reflected method for the operation, this method will be
2143 called before the left operand's non-reflected method. This behavior allows
2144 subclasses to override their ancestors' operations.
2145
2146
2147.. method:: object.__iadd__(self, other)
2148 object.__isub__(self, other)
2149 object.__imul__(self, other)
2150 object.__idiv__(self, other)
2151 object.__itruediv__(self, other)
2152 object.__ifloordiv__(self, other)
2153 object.__imod__(self, other)
2154 object.__ipow__(self, other[, modulo])
2155 object.__ilshift__(self, other)
2156 object.__irshift__(self, other)
2157 object.__iand__(self, other)
2158 object.__ixor__(self, other)
2159 object.__ior__(self, other)
2160
Georg Brandlfe11f4d2009-01-18 18:25:30 +00002161 These methods are called to implement the augmented arithmetic assignments
Georg Brandl8ec7f652007-08-15 14:28:01 +00002162 (``+=``, ``-=``, ``*=``, ``/=``, ``//=``, ``%=``, ``**=``, ``<<=``, ``>>=``,
2163 ``&=``, ``^=``, ``|=``). These methods should attempt to do the operation
2164 in-place (modifying *self*) and return the result (which could be, but does
2165 not have to be, *self*). If a specific method is not defined, the augmented
Georg Brandlfe11f4d2009-01-18 18:25:30 +00002166 assignment falls back to the normal methods. For instance, to execute the
2167 statement ``x += y``, where *x* is an instance of a class that has an
Georg Brandl8ec7f652007-08-15 14:28:01 +00002168 :meth:`__iadd__` method, ``x.__iadd__(y)`` is called. If *x* is an instance
2169 of a class that does not define a :meth:`__iadd__` method, ``x.__add__(y)``
Brett Cannon93298462008-08-14 05:55:18 +00002170 and ``y.__radd__(x)`` are considered, as with the evaluation of ``x + y``.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002171
2172
2173.. method:: object.__neg__(self)
2174 object.__pos__(self)
2175 object.__abs__(self)
2176 object.__invert__(self)
2177
2178 .. index:: builtin: abs
2179
2180 Called to implement the unary arithmetic operations (``-``, ``+``, :func:`abs`
2181 and ``~``).
2182
2183
2184.. method:: object.__complex__(self)
2185 object.__int__(self)
2186 object.__long__(self)
2187 object.__float__(self)
2188
2189 .. index::
2190 builtin: complex
2191 builtin: int
2192 builtin: long
2193 builtin: float
2194
2195 Called to implement the built-in functions :func:`complex`, :func:`int`,
2196 :func:`long`, and :func:`float`. Should return a value of the appropriate type.
2197
2198
2199.. method:: object.__oct__(self)
2200 object.__hex__(self)
2201
2202 .. index::
2203 builtin: oct
2204 builtin: hex
2205
2206 Called to implement the built-in functions :func:`oct` and :func:`hex`. Should
2207 return a string value.
2208
2209
2210.. method:: object.__index__(self)
2211
2212 Called to implement :func:`operator.index`. Also called whenever Python needs
2213 an integer object (such as in slicing). Must return an integer (int or long).
2214
2215 .. versionadded:: 2.5
2216
2217
2218.. method:: object.__coerce__(self, other)
2219
2220 Called to implement "mixed-mode" numeric arithmetic. Should either return a
2221 2-tuple containing *self* and *other* converted to a common numeric type, or
2222 ``None`` if conversion is impossible. When the common type would be the type of
2223 ``other``, it is sufficient to return ``None``, since the interpreter will also
2224 ask the other object to attempt a coercion (but sometimes, if the implementation
2225 of the other type cannot be changed, it is useful to do the conversion to the
2226 other type here). A return value of ``NotImplemented`` is equivalent to
2227 returning ``None``.
2228
2229
2230.. _coercion-rules:
2231
2232Coercion rules
2233--------------
2234
2235This section used to document the rules for coercion. As the language has
2236evolved, the coercion rules have become hard to document precisely; documenting
2237what one version of one particular implementation does is undesirable. Instead,
Ezio Melotti510ff542012-05-03 19:21:40 +03002238here are some informal guidelines regarding coercion. In Python 3, coercion
Georg Brandl8ec7f652007-08-15 14:28:01 +00002239will not be supported.
2240
2241*
2242
2243 If the left operand of a % operator is a string or Unicode object, no coercion
2244 takes place and the string formatting operation is invoked instead.
2245
2246*
2247
2248 It is no longer recommended to define a coercion operation. Mixed-mode
2249 operations on types that don't define coercion pass the original arguments to
2250 the operation.
2251
2252*
2253
2254 New-style classes (those derived from :class:`object`) never invoke the
2255 :meth:`__coerce__` method in response to a binary operator; the only time
2256 :meth:`__coerce__` is invoked is when the built-in function :func:`coerce` is
2257 called.
2258
2259*
2260
2261 For most intents and purposes, an operator that returns ``NotImplemented`` is
2262 treated the same as one that is not implemented at all.
2263
2264*
2265
2266 Below, :meth:`__op__` and :meth:`__rop__` are used to signify the generic method
2267 names corresponding to an operator; :meth:`__iop__` is used for the
2268 corresponding in-place operator. For example, for the operator '``+``',
2269 :meth:`__add__` and :meth:`__radd__` are used for the left and right variant of
2270 the binary operator, and :meth:`__iadd__` for the in-place variant.
2271
2272*
2273
2274 For objects *x* and *y*, first ``x.__op__(y)`` is tried. If this is not
2275 implemented or returns ``NotImplemented``, ``y.__rop__(x)`` is tried. If this
2276 is also not implemented or returns ``NotImplemented``, a :exc:`TypeError`
2277 exception is raised. But see the following exception:
2278
2279*
2280
2281 Exception to the previous item: if the left operand is an instance of a built-in
2282 type or a new-style class, and the right operand is an instance of a proper
2283 subclass of that type or class and overrides the base's :meth:`__rop__` method,
2284 the right operand's :meth:`__rop__` method is tried *before* the left operand's
2285 :meth:`__op__` method.
2286
2287 This is done so that a subclass can completely override binary operators.
2288 Otherwise, the left operand's :meth:`__op__` method would always accept the
2289 right operand: when an instance of a given class is expected, an instance of a
2290 subclass of that class is always acceptable.
2291
2292*
2293
2294 When either operand type defines a coercion, this coercion is called before that
2295 type's :meth:`__op__` or :meth:`__rop__` method is called, but no sooner. If
2296 the coercion returns an object of a different type for the operand whose
2297 coercion is invoked, part of the process is redone using the new object.
2298
2299*
2300
2301 When an in-place operator (like '``+=``') is used, if the left operand
2302 implements :meth:`__iop__`, it is invoked without any coercion. When the
2303 operation falls back to :meth:`__op__` and/or :meth:`__rop__`, the normal
2304 coercion rules apply.
2305
2306*
2307
Brett Cannon93298462008-08-14 05:55:18 +00002308 In ``x + y``, if *x* is a sequence that implements sequence concatenation,
Georg Brandl8ec7f652007-08-15 14:28:01 +00002309 sequence concatenation is invoked.
2310
2311*
2312
Eli Bendersky761473f2011-06-10 10:36:34 +03002313 In ``x * y``, if one operand is a sequence that implements sequence
Georg Brandl8ec7f652007-08-15 14:28:01 +00002314 repetition, and the other is an integer (:class:`int` or :class:`long`),
2315 sequence repetition is invoked.
2316
2317*
2318
2319 Rich comparisons (implemented by methods :meth:`__eq__` and so on) never use
2320 coercion. Three-way comparison (implemented by :meth:`__cmp__`) does use
2321 coercion under the same conditions as other binary operations use it.
2322
2323*
2324
2325 In the current implementation, the built-in numeric types :class:`int`,
Mark Dickinson82b34c52010-02-21 12:57:35 +00002326 :class:`long`, :class:`float`, and :class:`complex` do not use coercion.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002327 All these types implement a :meth:`__coerce__` method, for use by the built-in
2328 :func:`coerce` function.
2329
Mark Dickinson82b34c52010-02-21 12:57:35 +00002330 .. versionchanged:: 2.7
2331
2332 The complex type no longer makes implicit calls to the :meth:`__coerce__`
2333 method for mixed-type binary arithmetic operations.
2334
Georg Brandl8ec7f652007-08-15 14:28:01 +00002335
2336.. _context-managers:
2337
2338With Statement Context Managers
2339-------------------------------
2340
2341.. versionadded:: 2.5
2342
2343A :dfn:`context manager` is an object that defines the runtime context to be
2344established when executing a :keyword:`with` statement. The context manager
2345handles the entry into, and the exit from, the desired runtime context for the
2346execution of the block of code. Context managers are normally invoked using the
2347:keyword:`with` statement (described in section :ref:`with`), but can also be
2348used by directly invoking their methods.
2349
2350.. index::
2351 statement: with
2352 single: context manager
2353
2354Typical uses of context managers include saving and restoring various kinds of
2355global state, locking and unlocking resources, closing opened files, etc.
2356
2357For more information on context managers, see :ref:`typecontextmanager`.
2358
2359
2360.. method:: object.__enter__(self)
2361
2362 Enter the runtime context related to this object. The :keyword:`with` statement
2363 will bind this method's return value to the target(s) specified in the
2364 :keyword:`as` clause of the statement, if any.
2365
2366
2367.. method:: object.__exit__(self, exc_type, exc_value, traceback)
2368
2369 Exit the runtime context related to this object. The parameters describe the
2370 exception that caused the context to be exited. If the context was exited
2371 without an exception, all three arguments will be :const:`None`.
2372
2373 If an exception is supplied, and the method wishes to suppress the exception
2374 (i.e., prevent it from being propagated), it should return a true value.
2375 Otherwise, the exception will be processed normally upon exit from this method.
2376
2377 Note that :meth:`__exit__` methods should not reraise the passed-in exception;
2378 this is the caller's responsibility.
2379
2380
2381.. seealso::
2382
2383 :pep:`0343` - The "with" statement
2384 The specification, background, and examples for the Python :keyword:`with`
2385 statement.
2386
Nick Coghlana5107482008-08-04 12:40:59 +00002387
2388.. _old-style-special-lookup:
2389
2390Special method lookup for old-style classes
2391-------------------------------------------
2392
2393For old-style classes, special methods are always looked up in exactly the
2394same way as any other method or attribute. This is the case regardless of
2395whether the method is being looked up explicitly as in ``x.__getitem__(i)``
2396or implicitly as in ``x[i]``.
2397
2398This behaviour means that special methods may exhibit different behaviour
2399for different instances of a single old-style class if the appropriate
2400special attributes are set differently::
2401
2402 >>> class C:
2403 ... pass
2404 ...
2405 >>> c1 = C()
2406 >>> c2 = C()
2407 >>> c1.__len__ = lambda: 5
2408 >>> c2.__len__ = lambda: 9
2409 >>> len(c1)
2410 5
2411 >>> len(c2)
2412 9
2413
2414
2415.. _new-style-special-lookup:
2416
2417Special method lookup for new-style classes
2418-------------------------------------------
2419
2420For new-style classes, implicit invocations of special methods are only guaranteed
2421to work correctly if defined on an object's type, not in the object's instance
2422dictionary. That behaviour is the reason why the following code raises an
2423exception (unlike the equivalent example with old-style classes)::
2424
2425 >>> class C(object):
2426 ... pass
2427 ...
2428 >>> c = C()
2429 >>> c.__len__ = lambda: 5
2430 >>> len(c)
2431 Traceback (most recent call last):
2432 File "<stdin>", line 1, in <module>
2433 TypeError: object of type 'C' has no len()
2434
2435The rationale behind this behaviour lies with a number of special methods such
2436as :meth:`__hash__` and :meth:`__repr__` that are implemented by all objects,
2437including type objects. If the implicit lookup of these methods used the
2438conventional lookup process, they would fail when invoked on the type object
2439itself::
2440
2441 >>> 1 .__hash__() == hash(1)
2442 True
2443 >>> int.__hash__() == hash(int)
2444 Traceback (most recent call last):
2445 File "<stdin>", line 1, in <module>
2446 TypeError: descriptor '__hash__' of 'int' object needs an argument
2447
2448Incorrectly attempting to invoke an unbound method of a class in this way is
2449sometimes referred to as 'metaclass confusion', and is avoided by bypassing
2450the instance when looking up special methods::
2451
2452 >>> type(1).__hash__(1) == hash(1)
2453 True
2454 >>> type(int).__hash__(int) == hash(int)
2455 True
2456
2457In addition to bypassing any instance attributes in the interest of
Georg Brandl9a053732008-12-05 15:29:39 +00002458correctness, implicit special method lookup generally also bypasses the
Nick Coghlana5107482008-08-04 12:40:59 +00002459:meth:`__getattribute__` method even of the object's metaclass::
2460
2461 >>> class Meta(type):
2462 ... def __getattribute__(*args):
2463 ... print "Metaclass getattribute invoked"
2464 ... return type.__getattribute__(*args)
2465 ...
2466 >>> class C(object):
2467 ... __metaclass__ = Meta
2468 ... def __len__(self):
2469 ... return 10
2470 ... def __getattribute__(*args):
2471 ... print "Class getattribute invoked"
2472 ... return object.__getattribute__(*args)
2473 ...
2474 >>> c = C()
2475 >>> c.__len__() # Explicit lookup via instance
2476 Class getattribute invoked
2477 10
2478 >>> type(c).__len__(c) # Explicit lookup via type
2479 Metaclass getattribute invoked
2480 10
2481 >>> len(c) # Implicit lookup
2482 10
2483
2484Bypassing the :meth:`__getattribute__` machinery in this fashion
2485provides significant scope for speed optimisations within the
2486interpreter, at the cost of some flexibility in the handling of
2487special methods (the special method *must* be set on the class
2488object itself in order to be consistently invoked by the interpreter).
2489
2490
Georg Brandl8ec7f652007-08-15 14:28:01 +00002491.. rubric:: Footnotes
2492
Nick Coghlana5107482008-08-04 12:40:59 +00002493.. [#] It *is* possible in some cases to change an object's type, under certain
2494 controlled conditions. It generally isn't a good idea though, since it can
2495 lead to some very strange behaviour if it is handled incorrectly.
Georg Brandl8ec7f652007-08-15 14:28:01 +00002496
Georg Brandl8ec7f652007-08-15 14:28:01 +00002497.. [#] For operands of the same type, it is assumed that if the non-reflected method
2498 (such as :meth:`__add__`) fails the operation is not supported, which is why the
2499 reflected method is not called.
2500