Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 554f334 commit 3fccfcbCopy full SHA for 3fccfcb
1 file changed
Doc/library/functools.rst
@@ -55,9 +55,9 @@ The :mod:`functools` module defines the following functions:
55
The wrapped function also has a :attr:`clear` attribute which can be
56
called (with no arguments) to clear the cache.
57
58
- The :attr:`__wrapped__` attribute may be used to access the original
59
- function (e.g. to bypass the cache or to apply a different caching
60
- strategy)
+ The original underlying function is accessible through the
+ :attr:`__wrapped__` attribute. This allows introspection, bypassing
+ the cache, or rewrapping the function with a different caching tool.
61
62
A `LRU (least recently used) cache
63
<http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used>`_
0 commit comments