diff -r 1d72402c1c91 Doc/library/functools.rst --- a/Doc/library/functools.rst Tue Mar 15 13:33:28 2016 +1300 +++ b/Doc/library/functools.rst Wed Mar 23 11:33:09 2016 +0800 @@ -376,9 +376,9 @@ 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 *WRAPPER_ASSIGNMENTS* (which assigns to the wrapper - function's *__name__*, *__module__*, *__annotations__* and *__doc__*, the - documentation string) and *WRAPPER_UPDATES* (which updates the wrapper - function's *__dict__*, i.e. the instance dictionary). + function's *__name__*, *__qualname__*, *__module__*, *__annotations__* and + *__doc__*, the documentation string) and *WRAPPER_UPDATES* (which updates + the wrapper function's *__dict__*, i.e. the instance dictionary). To allow access to the original function for introspection and other purposes (e.g. bypassing a caching decorator such as :func:`lru_cache`), this function