Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/functools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The :mod:`functools` module defines the following functions:
3628800
>>> factorial(5) # just looks up cached value result
120
>>> factorial(12) # makes two new recursive calls, the other 10 are cached
>>> factorial(12) # makes two new recursive calls, the other 11 are cached
479001600

The cache is threadsafe so that the wrapped function can be used in
Expand Down
Loading