Georg Brandl | 6c89a79 | 2012-01-25 22:36:25 +0100 | [diff] [blame] | 1 | :mod:`functools` --- Higher-order functions and operations on callable objects |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 2 | ============================================================================== |
| 3 | |
| 4 | .. module:: functools |
Georg Brandl | 6c89a79 | 2012-01-25 22:36:25 +0100 | [diff] [blame] | 5 | :synopsis: Higher-order functions and operations on callable objects. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 6 | .. moduleauthor:: Peter Harris <scav@blueyonder.co.uk> |
| 7 | .. moduleauthor:: Raymond Hettinger <python@rcn.com> |
| 8 | .. moduleauthor:: Nick Coghlan <ncoghlan@gmail.com> |
Łukasz Langa | 6f69251 | 2013-06-05 12:20:24 +0200 | [diff] [blame] | 9 | .. moduleauthor:: Łukasz Langa <lukasz@langa.pl> |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 10 | .. sectionauthor:: Peter Harris <scav@blueyonder.co.uk> |
| 11 | |
Raymond Hettinger | 05ce079 | 2011-01-10 21:16:07 +0000 | [diff] [blame] | 12 | **Source code:** :source:`Lib/functools.py` |
| 13 | |
| 14 | -------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 15 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | The :mod:`functools` module is for higher-order functions: functions that act on |
| 17 | or return other functions. In general, any callable object can be treated as a |
| 18 | function for the purposes of this module. |
| 19 | |
Thomas Wouters | ed03b41 | 2007-08-28 21:37:11 +0000 | [diff] [blame] | 20 | The :mod:`functools` module defines the following functions: |
| 21 | |
Éric Araujo | b10089e | 2010-11-18 14:22:08 +0000 | [diff] [blame] | 22 | .. function:: cmp_to_key(func) |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 23 | |
Georg Brandl | 3b65fd7 | 2012-01-23 20:19:33 +0100 | [diff] [blame] | 24 | Transform an old-style comparison function to a key function. Used with |
Benjamin Peterson | cca6531 | 2010-08-09 02:13:10 +0000 | [diff] [blame] | 25 | tools that accept key functions (such as :func:`sorted`, :func:`min`, |
| 26 | :func:`max`, :func:`heapq.nlargest`, :func:`heapq.nsmallest`, |
| 27 | :func:`itertools.groupby`). This function is primarily used as a transition |
Ezio Melotti | 9ecb6be | 2012-01-16 08:28:54 +0200 | [diff] [blame] | 28 | tool for programs being converted from Python 2 which supported the use of |
Benjamin Peterson | cca6531 | 2010-08-09 02:13:10 +0000 | [diff] [blame] | 29 | comparison functions. |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 30 | |
Georg Brandl | 6c89a79 | 2012-01-25 22:36:25 +0100 | [diff] [blame] | 31 | A comparison function is any callable that accept two arguments, compares them, |
Benjamin Peterson | cca6531 | 2010-08-09 02:13:10 +0000 | [diff] [blame] | 32 | and returns a negative number for less-than, zero for equality, or a positive |
| 33 | number for greater-than. A key function is a callable that accepts one |
Raymond Hettinger | c79fb0e | 2010-12-01 03:45:41 +0000 | [diff] [blame] | 34 | argument and returns another value indicating the position in the desired |
Benjamin Peterson | cca6531 | 2010-08-09 02:13:10 +0000 | [diff] [blame] | 35 | collation sequence. |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 36 | |
Benjamin Peterson | cca6531 | 2010-08-09 02:13:10 +0000 | [diff] [blame] | 37 | Example:: |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 38 | |
Benjamin Peterson | cca6531 | 2010-08-09 02:13:10 +0000 | [diff] [blame] | 39 | sorted(iterable, key=cmp_to_key(locale.strcoll)) # locale-aware sort order |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 40 | |
| 41 | .. versionadded:: 3.2 |
| 42 | |
Georg Brandl | 67b21b7 | 2010-08-17 15:07:14 +0000 | [diff] [blame] | 43 | |
Raymond Hettinger | 010ce32 | 2012-05-19 21:20:48 -0700 | [diff] [blame] | 44 | .. decorator:: lru_cache(maxsize=128, typed=False) |
Georg Brandl | 2e7346a | 2010-07-31 18:09:23 +0000 | [diff] [blame] | 45 | |
| 46 | Decorator to wrap a function with a memoizing callable that saves up to the |
| 47 | *maxsize* most recent calls. It can save time when an expensive or I/O bound |
| 48 | function is periodically called with the same arguments. |
| 49 | |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 50 | Since a dictionary is used to cache results, the positional and keyword |
| 51 | arguments to the function must be hashable. |
Georg Brandl | 2e7346a | 2010-07-31 18:09:23 +0000 | [diff] [blame] | 52 | |
Raymond Hettinger | 7d74eff | 2012-06-04 00:32:15 -0700 | [diff] [blame] | 53 | If *maxsize* is set to None, the LRU feature is disabled and the cache can |
| 54 | grow without bound. The LRU feature performs best when *maxsize* is a |
| 55 | power-of-two. |
Raymond Hettinger | c79fb0e | 2010-12-01 03:45:41 +0000 | [diff] [blame] | 56 | |
Raymond Hettinger | cd9fdfd | 2011-10-20 08:57:45 -0700 | [diff] [blame] | 57 | If *typed* is set to True, function arguments of different types will be |
| 58 | cached separately. For example, ``f(3)`` and ``f(3.0)`` will be treated |
| 59 | as distinct calls with distinct results. |
| 60 | |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 61 | To help measure the effectiveness of the cache and tune the *maxsize* |
| 62 | parameter, the wrapped function is instrumented with a :func:`cache_info` |
| 63 | function that returns a :term:`named tuple` showing *hits*, *misses*, |
Raymond Hettinger | c79fb0e | 2010-12-01 03:45:41 +0000 | [diff] [blame] | 64 | *maxsize* and *currsize*. In a multi-threaded environment, the hits |
| 65 | and misses are approximate. |
Nick Coghlan | 234515a | 2010-11-30 06:19:46 +0000 | [diff] [blame] | 66 | |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 67 | The decorator also provides a :func:`cache_clear` function for clearing or |
| 68 | invalidating the cache. |
Georg Brandl | 2e7346a | 2010-07-31 18:09:23 +0000 | [diff] [blame] | 69 | |
Raymond Hettinger | 3fccfcb | 2010-08-17 19:19:29 +0000 | [diff] [blame] | 70 | The original underlying function is accessible through the |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 71 | :attr:`__wrapped__` attribute. This is useful for introspection, for |
| 72 | bypassing the cache, or for rewrapping the function with a different cache. |
Nick Coghlan | 9887683 | 2010-08-17 06:17:18 +0000 | [diff] [blame] | 73 | |
Raymond Hettinger | cc03858 | 2010-11-30 20:02:57 +0000 | [diff] [blame] | 74 | An `LRU (least recently used) cache |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 75 | <http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used>`_ works |
Raymond Hettinger | cd9fdfd | 2011-10-20 08:57:45 -0700 | [diff] [blame] | 76 | best when the most recent calls are the best predictors of upcoming calls (for |
| 77 | example, the most popular articles on a news server tend to change each day). |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 78 | The cache's size limit assures that the cache does not grow without bound on |
| 79 | long-running processes such as web servers. |
| 80 | |
Raymond Hettinger | cc03858 | 2010-11-30 20:02:57 +0000 | [diff] [blame] | 81 | Example of an LRU cache for static web content:: |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 82 | |
Raymond Hettinger | 17328e4 | 2013-04-06 20:27:33 -0700 | [diff] [blame] | 83 | @lru_cache(maxsize=32) |
Raymond Hettinger | 7496b41 | 2010-11-30 19:15:45 +0000 | [diff] [blame] | 84 | def get_pep(num): |
| 85 | 'Retrieve text of a Python Enhancement Proposal' |
| 86 | resource = 'http://www.python.org/dev/peps/pep-%04d/' % num |
| 87 | try: |
| 88 | with urllib.request.urlopen(resource) as s: |
| 89 | return s.read() |
| 90 | except urllib.error.HTTPError: |
| 91 | return 'Not Found' |
| 92 | |
| 93 | >>> for n in 8, 290, 308, 320, 8, 218, 320, 279, 289, 320, 9991: |
| 94 | ... pep = get_pep(n) |
| 95 | ... print(n, len(pep)) |
| 96 | |
Raymond Hettinger | 17328e4 | 2013-04-06 20:27:33 -0700 | [diff] [blame] | 97 | >>> get_pep.cache_info() |
| 98 | CacheInfo(hits=3, misses=8, maxsize=32, currsize=8) |
Georg Brandl | 2e7346a | 2010-07-31 18:09:23 +0000 | [diff] [blame] | 99 | |
Raymond Hettinger | c79fb0e | 2010-12-01 03:45:41 +0000 | [diff] [blame] | 100 | Example of efficiently computing |
| 101 | `Fibonacci numbers <http://en.wikipedia.org/wiki/Fibonacci_number>`_ |
| 102 | using a cache to implement a |
| 103 | `dynamic programming <http://en.wikipedia.org/wiki/Dynamic_programming>`_ |
| 104 | technique:: |
| 105 | |
| 106 | @lru_cache(maxsize=None) |
| 107 | def fib(n): |
| 108 | if n < 2: |
| 109 | return n |
| 110 | return fib(n-1) + fib(n-2) |
| 111 | |
Raymond Hettinger | 17328e4 | 2013-04-06 20:27:33 -0700 | [diff] [blame] | 112 | >>> [fib(n) for n in range(16)] |
Raymond Hettinger | c79fb0e | 2010-12-01 03:45:41 +0000 | [diff] [blame] | 113 | [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610] |
| 114 | |
Raymond Hettinger | 17328e4 | 2013-04-06 20:27:33 -0700 | [diff] [blame] | 115 | >>> fib.cache_info() |
Raymond Hettinger | c79fb0e | 2010-12-01 03:45:41 +0000 | [diff] [blame] | 116 | CacheInfo(hits=28, misses=16, maxsize=None, currsize=16) |
| 117 | |
Georg Brandl | 2e7346a | 2010-07-31 18:09:23 +0000 | [diff] [blame] | 118 | .. versionadded:: 3.2 |
| 119 | |
Raymond Hettinger | cd9fdfd | 2011-10-20 08:57:45 -0700 | [diff] [blame] | 120 | .. versionchanged:: 3.3 |
| 121 | Added the *typed* option. |
| 122 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 123 | .. decorator:: total_ordering |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 124 | |
| 125 | Given a class defining one or more rich comparison ordering methods, this |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 126 | class decorator supplies the rest. This simplifies the effort involved |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 127 | in specifying all of the possible rich comparison operations: |
| 128 | |
| 129 | The class must define one of :meth:`__lt__`, :meth:`__le__`, |
| 130 | :meth:`__gt__`, or :meth:`__ge__`. |
| 131 | In addition, the class should supply an :meth:`__eq__` method. |
| 132 | |
| 133 | For example:: |
| 134 | |
| 135 | @total_ordering |
| 136 | class Student: |
Nick Coghlan | f05d981 | 2013-10-02 00:02:03 +1000 | [diff] [blame] | 137 | def _is_valid_operand(self, other): |
| 138 | return (hasattr(other, "lastname") and |
| 139 | hasattr(other, "firstname")) |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 140 | def __eq__(self, other): |
Nick Coghlan | f05d981 | 2013-10-02 00:02:03 +1000 | [diff] [blame] | 141 | if not self._is_valid_operand(other): |
| 142 | return NotImplemented |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 143 | return ((self.lastname.lower(), self.firstname.lower()) == |
| 144 | (other.lastname.lower(), other.firstname.lower())) |
| 145 | def __lt__(self, other): |
Nick Coghlan | f05d981 | 2013-10-02 00:02:03 +1000 | [diff] [blame] | 146 | if not self._is_valid_operand(other): |
| 147 | return NotImplemented |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 148 | return ((self.lastname.lower(), self.firstname.lower()) < |
| 149 | (other.lastname.lower(), other.firstname.lower())) |
| 150 | |
Nick Coghlan | f05d981 | 2013-10-02 00:02:03 +1000 | [diff] [blame] | 151 | .. note:: |
| 152 | |
| 153 | While this decorator makes it easy to create well behaved totally |
| 154 | ordered types, it *does* come at the cost of slower execution and |
| 155 | more complex stack traces for the derived comparison methods. If |
| 156 | performance benchmarking indicates this is a bottleneck for a given |
| 157 | application, implementing all six rich comparison methods instead is |
| 158 | likely to provide an easy speed boost. |
| 159 | |
Raymond Hettinger | c50846a | 2010-04-05 18:56:31 +0000 | [diff] [blame] | 160 | .. versionadded:: 3.2 |
| 161 | |
Nick Coghlan | f05d981 | 2013-10-02 00:02:03 +1000 | [diff] [blame] | 162 | .. versionchanged:: 3.4 |
| 163 | Returning NotImplemented from the underlying comparison function for |
| 164 | unrecognised types is now supported. |
Georg Brandl | 67b21b7 | 2010-08-17 15:07:14 +0000 | [diff] [blame] | 165 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 166 | .. function:: partial(func, *args, **keywords) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 167 | |
| 168 | Return a new :class:`partial` object which when called will behave like *func* |
| 169 | called with the positional arguments *args* and keyword arguments *keywords*. If |
| 170 | more arguments are supplied to the call, they are appended to *args*. If |
| 171 | additional keyword arguments are supplied, they extend and override *keywords*. |
| 172 | Roughly equivalent to:: |
| 173 | |
| 174 | def partial(func, *args, **keywords): |
| 175 | def newfunc(*fargs, **fkeywords): |
| 176 | newkeywords = keywords.copy() |
| 177 | newkeywords.update(fkeywords) |
| 178 | return func(*(args + fargs), **newkeywords) |
| 179 | newfunc.func = func |
| 180 | newfunc.args = args |
| 181 | newfunc.keywords = keywords |
| 182 | return newfunc |
| 183 | |
| 184 | The :func:`partial` is used for partial function application which "freezes" |
| 185 | some portion of a function's arguments and/or keywords resulting in a new object |
| 186 | with a simplified signature. For example, :func:`partial` can be used to create |
| 187 | a callable that behaves like the :func:`int` function where the *base* argument |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 188 | defaults to two: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 189 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 190 | >>> from functools import partial |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 191 | >>> basetwo = partial(int, base=2) |
| 192 | >>> basetwo.__doc__ = 'Convert base 2 string to an int.' |
| 193 | >>> basetwo('10010') |
| 194 | 18 |
| 195 | |
| 196 | |
Nick Coghlan | f4cb48a | 2013-11-03 16:41:46 +1000 | [diff] [blame] | 197 | .. class:: partialmethod(func, *args, **keywords) |
| 198 | |
| 199 | Return a new :class:`partialmethod` descriptor which behaves |
| 200 | like :class:`partial` except that it is designed to be used as a method |
| 201 | definition rather than being directly callable. |
| 202 | |
| 203 | *func* must be a :term:`descriptor` or a callable (objects which are both, |
| 204 | like normal functions, are handled as descriptors). |
| 205 | |
| 206 | When *func* is a descriptor (such as a normal Python function, |
| 207 | :func:`classmethod`, :func:`staticmethod`, :func:`abstractmethod` or |
| 208 | another instance of :class:`partialmethod`), calls to ``__get__`` are |
| 209 | delegated to the underlying descriptor, and an appropriate |
| 210 | :class:`partial` object returned as the result. |
| 211 | |
| 212 | When *func* is a non-descriptor callable, an appropriate bound method is |
| 213 | created dynamically. This behaves like a normal Python function when |
| 214 | used as a method: the *self* argument will be inserted as the first |
| 215 | positional argument, even before the *args* and *keywords* supplied to |
| 216 | the :class:`partialmethod` constructor. |
| 217 | |
| 218 | Example:: |
| 219 | |
| 220 | >>> class Cell(object): |
| 221 | ... @property |
| 222 | ... def alive(self): |
| 223 | ... return self._alive |
| 224 | ... def set_state(self, state): |
| 225 | ... self._alive = bool(state) |
Nick Coghlan | 3daaf5f | 2013-11-04 23:32:16 +1000 | [diff] [blame] | 226 | ... set_alive = partialmethod(set_state, True) |
| 227 | ... set_dead = partialmethod(set_state, False) |
Nick Coghlan | f4cb48a | 2013-11-03 16:41:46 +1000 | [diff] [blame] | 228 | ... |
| 229 | >>> c = Cell() |
| 230 | >>> c.alive |
| 231 | False |
| 232 | >>> c.set_alive() |
| 233 | >>> c.alive |
| 234 | True |
| 235 | |
| 236 | .. versionadded:: 3.4 |
| 237 | |
| 238 | |
Georg Brandl | 58f9e4f | 2008-04-19 22:18:33 +0000 | [diff] [blame] | 239 | .. function:: reduce(function, iterable[, initializer]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 240 | |
| 241 | Apply *function* of two arguments cumulatively to the items of *sequence*, from |
| 242 | left to right, so as to reduce the sequence to a single value. For example, |
| 243 | ``reduce(lambda x, y: x+y, [1, 2, 3, 4, 5])`` calculates ``((((1+2)+3)+4)+5)``. |
| 244 | The left argument, *x*, is the accumulated value and the right argument, *y*, is |
| 245 | the update value from the *sequence*. If the optional *initializer* is present, |
| 246 | it is placed before the items of the sequence in the calculation, and serves as |
| 247 | a default when the sequence is empty. If *initializer* is not given and |
| 248 | *sequence* contains only one item, the first item is returned. |
| 249 | |
Raymond Hettinger | 6480168 | 2013-10-12 16:04:17 -0700 | [diff] [blame] | 250 | Equivalent to:: |
| 251 | |
| 252 | def reduce(function, iterable, initializer=None): |
| 253 | it = iter(iterable) |
| 254 | if initializer is None: |
| 255 | value = next(it) |
| 256 | else: |
| 257 | value = initializer |
| 258 | for element in it: |
| 259 | value = function(value, element) |
| 260 | return value |
| 261 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 262 | |
Łukasz Langa | 6f69251 | 2013-06-05 12:20:24 +0200 | [diff] [blame] | 263 | .. decorator:: singledispatch(default) |
| 264 | |
Łukasz Langa | fdcf2b7 | 2013-06-07 22:54:03 +0200 | [diff] [blame] | 265 | Transforms a function into a :term:`single-dispatch <single |
| 266 | dispatch>` :term:`generic function`. |
Łukasz Langa | 6f69251 | 2013-06-05 12:20:24 +0200 | [diff] [blame] | 267 | |
| 268 | To define a generic function, decorate it with the ``@singledispatch`` |
| 269 | decorator. Note that the dispatch happens on the type of the first argument, |
| 270 | create your function accordingly:: |
| 271 | |
| 272 | >>> from functools import singledispatch |
| 273 | >>> @singledispatch |
| 274 | ... def fun(arg, verbose=False): |
| 275 | ... if verbose: |
| 276 | ... print("Let me just say,", end=" ") |
| 277 | ... print(arg) |
| 278 | |
| 279 | To add overloaded implementations to the function, use the :func:`register` |
| 280 | attribute of the generic function. It is a decorator, taking a type |
| 281 | parameter and decorating a function implementing the operation for that |
| 282 | type:: |
| 283 | |
| 284 | >>> @fun.register(int) |
| 285 | ... def _(arg, verbose=False): |
| 286 | ... if verbose: |
| 287 | ... print("Strength in numbers, eh?", end=" ") |
| 288 | ... print(arg) |
| 289 | ... |
| 290 | >>> @fun.register(list) |
| 291 | ... def _(arg, verbose=False): |
| 292 | ... if verbose: |
| 293 | ... print("Enumerate this:") |
| 294 | ... for i, elem in enumerate(arg): |
| 295 | ... print(i, elem) |
| 296 | |
| 297 | To enable registering lambdas and pre-existing functions, the |
| 298 | :func:`register` attribute can be used in a functional form:: |
| 299 | |
| 300 | >>> def nothing(arg, verbose=False): |
| 301 | ... print("Nothing.") |
| 302 | ... |
| 303 | >>> fun.register(type(None), nothing) |
| 304 | |
| 305 | The :func:`register` attribute returns the undecorated function which |
| 306 | enables decorator stacking, pickling, as well as creating unit tests for |
| 307 | each variant independently:: |
| 308 | |
| 309 | >>> @fun.register(float) |
| 310 | ... @fun.register(Decimal) |
| 311 | ... def fun_num(arg, verbose=False): |
| 312 | ... if verbose: |
| 313 | ... print("Half of your number:", end=" ") |
| 314 | ... print(arg / 2) |
| 315 | ... |
| 316 | >>> fun_num is fun |
| 317 | False |
| 318 | |
| 319 | When called, the generic function dispatches on the type of the first |
| 320 | argument:: |
| 321 | |
| 322 | >>> fun("Hello, world.") |
| 323 | Hello, world. |
| 324 | >>> fun("test.", verbose=True) |
| 325 | Let me just say, test. |
| 326 | >>> fun(42, verbose=True) |
| 327 | Strength in numbers, eh? 42 |
| 328 | >>> fun(['spam', 'spam', 'eggs', 'spam'], verbose=True) |
| 329 | Enumerate this: |
| 330 | 0 spam |
| 331 | 1 spam |
| 332 | 2 eggs |
| 333 | 3 spam |
| 334 | >>> fun(None) |
| 335 | Nothing. |
| 336 | >>> fun(1.23) |
| 337 | 0.615 |
| 338 | |
| 339 | Where there is no registered implementation for a specific type, its |
| 340 | method resolution order is used to find a more generic implementation. |
| 341 | The original function decorated with ``@singledispatch`` is registered |
| 342 | for the base ``object`` type, which means it is used if no better |
| 343 | implementation is found. |
| 344 | |
| 345 | To check which implementation will the generic function choose for |
| 346 | a given type, use the ``dispatch()`` attribute:: |
| 347 | |
| 348 | >>> fun.dispatch(float) |
| 349 | <function fun_num at 0x1035a2840> |
| 350 | >>> fun.dispatch(dict) # note: default implementation |
| 351 | <function fun at 0x103fe0000> |
| 352 | |
| 353 | To access all registered implementations, use the read-only ``registry`` |
| 354 | attribute:: |
| 355 | |
| 356 | >>> fun.registry.keys() |
| 357 | dict_keys([<class 'NoneType'>, <class 'int'>, <class 'object'>, |
| 358 | <class 'decimal.Decimal'>, <class 'list'>, |
| 359 | <class 'float'>]) |
| 360 | >>> fun.registry[float] |
| 361 | <function fun_num at 0x1035a2840> |
| 362 | >>> fun.registry[object] |
| 363 | <function fun at 0x103fe0000> |
| 364 | |
| 365 | .. versionadded:: 3.4 |
| 366 | |
| 367 | |
Georg Brandl | 036490d | 2009-05-17 13:00:36 +0000 | [diff] [blame] | 368 | .. function:: update_wrapper(wrapper, wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATES) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 369 | |
| 370 | Update a *wrapper* function to look like the *wrapped* function. The optional |
| 371 | arguments are tuples to specify which attributes of the original function are |
| 372 | assigned directly to the matching attributes on the wrapper function and which |
| 373 | attributes of the wrapper function are updated with the corresponding attributes |
| 374 | from the original function. The default values for these arguments are the |
| 375 | module level constants *WRAPPER_ASSIGNMENTS* (which assigns to the wrapper |
Antoine Pitrou | 560f764 | 2010-08-04 18:28:02 +0000 | [diff] [blame] | 376 | function's *__name__*, *__module__*, *__annotations__* and *__doc__*, the |
| 377 | documentation string) and *WRAPPER_UPDATES* (which updates the wrapper |
| 378 | function's *__dict__*, i.e. the instance dictionary). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 379 | |
Nick Coghlan | 9887683 | 2010-08-17 06:17:18 +0000 | [diff] [blame] | 380 | To allow access to the original function for introspection and other purposes |
| 381 | (e.g. bypassing a caching decorator such as :func:`lru_cache`), this function |
Nick Coghlan | 24c05bc | 2013-07-15 21:13:08 +1000 | [diff] [blame] | 382 | automatically adds a ``__wrapped__`` attribute to the wrapper that refers to |
| 383 | the function being wrapped. |
Nick Coghlan | 9887683 | 2010-08-17 06:17:18 +0000 | [diff] [blame] | 384 | |
Christian Heimes | d8654cf | 2007-12-02 15:22:16 +0000 | [diff] [blame] | 385 | The main intended use for this function is in :term:`decorator` functions which |
| 386 | wrap the decorated function and return the wrapper. If the wrapper function is |
| 387 | not updated, the metadata of the returned function will reflect the wrapper |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 388 | definition rather than the original function definition, which is typically less |
| 389 | than helpful. |
| 390 | |
Nick Coghlan | 9887683 | 2010-08-17 06:17:18 +0000 | [diff] [blame] | 391 | :func:`update_wrapper` may be used with callables other than functions. Any |
| 392 | attributes named in *assigned* or *updated* that are missing from the object |
| 393 | being wrapped are ignored (i.e. this function will not attempt to set them |
| 394 | on the wrapper function). :exc:`AttributeError` is still raised if the |
| 395 | wrapper function itself is missing any attributes named in *updated*. |
| 396 | |
| 397 | .. versionadded:: 3.2 |
Georg Brandl | 9e25701 | 2010-08-17 14:11:59 +0000 | [diff] [blame] | 398 | Automatic addition of the ``__wrapped__`` attribute. |
Nick Coghlan | 9887683 | 2010-08-17 06:17:18 +0000 | [diff] [blame] | 399 | |
| 400 | .. versionadded:: 3.2 |
Georg Brandl | 9e25701 | 2010-08-17 14:11:59 +0000 | [diff] [blame] | 401 | Copying of the ``__annotations__`` attribute by default. |
Nick Coghlan | 9887683 | 2010-08-17 06:17:18 +0000 | [diff] [blame] | 402 | |
| 403 | .. versionchanged:: 3.2 |
Georg Brandl | 9e25701 | 2010-08-17 14:11:59 +0000 | [diff] [blame] | 404 | Missing attributes no longer trigger an :exc:`AttributeError`. |
| 405 | |
Nick Coghlan | 24c05bc | 2013-07-15 21:13:08 +1000 | [diff] [blame] | 406 | .. versionchanged:: 3.4 |
| 407 | The ``__wrapped__`` attribute now always refers to the wrapped |
| 408 | function, even if that function defined a ``__wrapped__`` attribute. |
| 409 | (see :issue:`17482`) |
| 410 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 411 | |
Georg Brandl | 8a1caa2 | 2010-07-29 16:01:11 +0000 | [diff] [blame] | 412 | .. decorator:: wraps(wrapped, assigned=WRAPPER_ASSIGNMENTS, updated=WRAPPER_UPDATES) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 413 | |
| 414 | This is a convenience function for invoking ``partial(update_wrapper, |
| 415 | wrapped=wrapped, assigned=assigned, updated=updated)`` as a function decorator |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 416 | when defining a wrapper function. For example: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 417 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 418 | >>> from functools import wraps |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 419 | >>> def my_decorator(f): |
| 420 | ... @wraps(f) |
| 421 | ... def wrapper(*args, **kwds): |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 422 | ... print('Calling decorated function') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 423 | ... return f(*args, **kwds) |
| 424 | ... return wrapper |
| 425 | ... |
| 426 | >>> @my_decorator |
| 427 | ... def example(): |
| 428 | ... """Docstring""" |
Georg Brandl | 6911e3c | 2007-09-04 07:15:32 +0000 | [diff] [blame] | 429 | ... print('Called example function') |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 430 | ... |
| 431 | >>> example() |
| 432 | Calling decorated function |
| 433 | Called example function |
| 434 | >>> example.__name__ |
| 435 | 'example' |
| 436 | >>> example.__doc__ |
| 437 | 'Docstring' |
| 438 | |
| 439 | Without the use of this decorator factory, the name of the example function |
| 440 | would have been ``'wrapper'``, and the docstring of the original :func:`example` |
| 441 | would have been lost. |
| 442 | |
| 443 | |
| 444 | .. _partial-objects: |
| 445 | |
| 446 | :class:`partial` Objects |
| 447 | ------------------------ |
| 448 | |
| 449 | :class:`partial` objects are callable objects created by :func:`partial`. They |
| 450 | have three read-only attributes: |
| 451 | |
| 452 | |
| 453 | .. attribute:: partial.func |
| 454 | |
| 455 | A callable object or function. Calls to the :class:`partial` object will be |
| 456 | forwarded to :attr:`func` with new arguments and keywords. |
| 457 | |
| 458 | |
| 459 | .. attribute:: partial.args |
| 460 | |
| 461 | The leftmost positional arguments that will be prepended to the positional |
| 462 | arguments provided to a :class:`partial` object call. |
| 463 | |
| 464 | |
| 465 | .. attribute:: partial.keywords |
| 466 | |
| 467 | The keyword arguments that will be supplied when the :class:`partial` object is |
| 468 | called. |
| 469 | |
| 470 | :class:`partial` objects are like :class:`function` objects in that they are |
| 471 | callable, weak referencable, and can have attributes. There are some important |
| 472 | differences. For instance, the :attr:`__name__` and :attr:`__doc__` attributes |
| 473 | are not created automatically. Also, :class:`partial` objects defined in |
| 474 | classes behave like static methods and do not transform into bound methods |
| 475 | during instance attribute look-up. |