2006-05-29 09:43:05 -03:00
|
|
|
\section{\module{functools} ---
|
2005-02-28 15:39:44 -04:00
|
|
|
Higher order functions and operations on callable objects.}
|
|
|
|
|
2006-05-29 09:43:05 -03:00
|
|
|
\declaremodule{standard}{functools} % standard library, in Python
|
2005-02-28 15:39:44 -04:00
|
|
|
|
|
|
|
\moduleauthor{Peter Harris}{scav@blueyonder.co.uk}
|
|
|
|
\moduleauthor{Raymond Hettinger}{python@rcn.com}
|
2006-06-08 10:54:49 -03:00
|
|
|
\moduleauthor{Nick Coghlan}{ncoghlan@gmail.com}
|
2005-02-28 15:39:44 -04:00
|
|
|
\sectionauthor{Peter Harris}{scav@blueyonder.co.uk}
|
|
|
|
|
|
|
|
\modulesynopsis{Higher-order functions and operations on callable objects.}
|
|
|
|
|
2005-03-02 11:10:38 -04:00
|
|
|
\versionadded{2.5}
|
2005-02-28 15:39:44 -04:00
|
|
|
|
2006-05-29 09:43:05 -03:00
|
|
|
The \module{functools} module is for higher-order functions: functions
|
2005-02-28 15:39:44 -04:00
|
|
|
that act on or return other functions. In general, any callable object can
|
|
|
|
be treated as a function for the purposes of this module.
|
|
|
|
|
|
|
|
|
2006-05-29 09:43:05 -03:00
|
|
|
The \module{functools} module defines the following function:
|
2005-02-28 15:39:44 -04:00
|
|
|
|
|
|
|
\begin{funcdesc}{partial}{func\optional{,*args}\optional{, **keywords}}
|
|
|
|
Return a new \class{partial} object which when called will behave like
|
|
|
|
\var{func} called with the positional arguments \var{args} and keyword
|
|
|
|
arguments \var{keywords}. If more arguments are supplied to the call, they
|
|
|
|
are appended to \var{args}. If additional keyword arguments are supplied,
|
|
|
|
they extend and override \var{keywords}. Roughly equivalent to:
|
|
|
|
\begin{verbatim}
|
|
|
|
def partial(func, *args, **keywords):
|
|
|
|
def newfunc(*fargs, **fkeywords):
|
|
|
|
newkeywords = keywords.copy()
|
|
|
|
newkeywords.update(fkeywords)
|
|
|
|
return func(*(args + fargs), **newkeywords)
|
|
|
|
newfunc.func = func
|
|
|
|
newfunc.args = args
|
|
|
|
newfunc.keywords = keywords
|
|
|
|
return newfunc
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
The \function{partial} is used for partial function application which
|
|
|
|
``freezes'' some portion of a function's arguments and/or keywords
|
2005-04-14 17:08:59 -03:00
|
|
|
resulting in a new object with a simplified signature. For example,
|
2005-02-28 15:39:44 -04:00
|
|
|
\function{partial} can be used to create a callable that behaves like
|
|
|
|
the \function{int} function where the \var{base} argument defaults to
|
|
|
|
two:
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> basetwo = partial(int, base=2)
|
2005-12-06 14:32:37 -04:00
|
|
|
>>> basetwo.__doc__ = 'Convert base 2 string to an int.'
|
2005-02-28 15:39:44 -04:00
|
|
|
>>> basetwo('10010')
|
|
|
|
18
|
|
|
|
\end{verbatim}
|
|
|
|
\end{funcdesc}
|
|
|
|
|
2006-06-08 10:54:49 -03:00
|
|
|
\begin{funcdesc}{update_wrapper}
|
|
|
|
{wrapper, wrapped\optional{, assigned}\optional{, updated}}
|
|
|
|
Update a wrapper function to look like the wrapped function. The optional
|
|
|
|
arguments are tuples to specify which attributes of the original
|
|
|
|
function are assigned directly to the matching attributes on the wrapper
|
|
|
|
function and which attributes of the wrapper function are updated with
|
|
|
|
the corresponding attributes from the original function. The default
|
|
|
|
values for these arguments are the module level constants
|
|
|
|
\var{WRAPPER_ASSIGNMENTS} (which assigns to the wrapper function's name,
|
|
|
|
module and documentation string) and \var{WRAPPER_UPDATES} (which
|
|
|
|
updates the wrapper function's instance dictionary).
|
|
|
|
|
|
|
|
The main intended use for this function is in decorator functions
|
|
|
|
which wrap the decorated function and return the wrapper. If the
|
|
|
|
wrapper function is not updated, the metadata of the returned function
|
|
|
|
will reflect the wrapper definition rather than the original function
|
|
|
|
definition, which is typically less than helpful.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{wraps}
|
|
|
|
{wrapped\optional{, assigned}\optional{, updated}}
|
|
|
|
This is a convenience function for invoking
|
|
|
|
\code{partial(update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated)}
|
|
|
|
as a function decorator when defining a wrapper function. For example:
|
|
|
|
\begin{verbatim}
|
|
|
|
>>> def my_decorator(f):
|
|
|
|
... @wraps(f)
|
|
|
|
... def wrapper(*args, **kwds):
|
|
|
|
... print 'Calling decorated function'
|
|
|
|
... return f(*args, **kwds)
|
|
|
|
... return wrapper
|
|
|
|
...
|
|
|
|
>>> @my_decorator
|
|
|
|
... def example():
|
|
|
|
... print 'Called example function'
|
|
|
|
...
|
|
|
|
>>> example()
|
|
|
|
Calling decorated function
|
|
|
|
Called example function
|
|
|
|
>>> example.__name__
|
|
|
|
'example'
|
|
|
|
\end{verbatim}
|
|
|
|
Without the use of this decorator factory, the name of the example
|
|
|
|
function would have been \code{'wrapper'}.
|
|
|
|
\end{funcdesc}
|
2005-02-28 15:39:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
\subsection{\class{partial} Objects \label{partial-objects}}
|
|
|
|
|
|
|
|
|
|
|
|
\class{partial} objects are callable objects created by \function{partial()}.
|
|
|
|
They have three read-only attributes:
|
|
|
|
|
|
|
|
\begin{memberdesc}[callable]{func}{}
|
|
|
|
A callable object or function. Calls to the \class{partial} object will
|
|
|
|
be forwarded to \member{func} with new arguments and keywords.
|
|
|
|
\end{memberdesc}
|
|
|
|
|
|
|
|
\begin{memberdesc}[tuple]{args}{}
|
|
|
|
The leftmost positional arguments that will be prepended to the
|
|
|
|
positional arguments provided to a \class{partial} object call.
|
|
|
|
\end{memberdesc}
|
|
|
|
|
|
|
|
\begin{memberdesc}[dict]{keywords}{}
|
|
|
|
The keyword arguments that will be supplied when the \class{partial} object
|
|
|
|
is called.
|
|
|
|
\end{memberdesc}
|
2005-03-08 03:15:36 -04:00
|
|
|
|
|
|
|
\class{partial} objects are like \class{function} objects in that they are
|
|
|
|
callable, weak referencable, and can have attributes. There are some
|
|
|
|
important differences. For instance, the \member{__name__} and
|
|
|
|
\member{__doc__} attributes are not created automatically. Also,
|
|
|
|
\class{partial} objects defined in classes behave like static methods and
|
|
|
|
do not transform into bound methods during instance attribute look-up.
|