René's URL Explorer Experiment


Title: functools — Higher-order functions and operations on callable objects — Python 3.15.0a5 documentation

Open Graph Title: functools — Higher-order functions and operations on callable objects

Description: Source code: Lib/functools.py The functools module is for higher-order functions: functions that act on or return other functions. In general, any callable object can be treated as a function for t...

Open Graph Description: Source code: Lib/functools.py The functools module is for higher-order functions: functions that act on or return other functions. In general, any callable object can be treated as a function for t...

Opengraph URL: https://docs.python.org/3/library/functools.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.15/_images/social_previews/summary_library_functools_d90ef356.png
og:image:altSource code: Lib/functools.py The functools module is for higher-order functions: functions that act on or return other functions. In general, any callable object can be treated as a function for t...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Table of Contentshttps://docs.python.org/dev/contents.html
functools — Higher-order functions and operations on callable objectshttps://docs.python.org/dev/library/functools.html
partial Objectshttps://docs.python.org/dev/library/functools.html#partial-objects
itertools — Functions creating iterators for efficient loopinghttps://docs.python.org/dev/library/itertools.html
operator — Standard operators as functionshttps://docs.python.org/dev/library/operator.html
Report a bughttps://docs.python.org/dev/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/library/functools.rst?plain=1
indexhttps://docs.python.org/dev/genindex.html
moduleshttps://docs.python.org/dev/py-modindex.html
nexthttps://docs.python.org/dev/library/operator.html
previoushttps://docs.python.org/dev/library/itertools.html
Pythonhttps://www.python.org/
3.15.0a5 Documentationhttps://docs.python.org/dev/index.html
The Python Standard Libraryhttps://docs.python.org/dev/library/index.html
Functional Programming Moduleshttps://docs.python.org/dev/library/functional.html
functools — Higher-order functions and operations on callable objectshttps://docs.python.org/dev/library/functools.html
https://docs.python.org/dev/library/functools.html#module-functools
Lib/functools.pyhttps://github.com/python/cpython/tree/main/Lib/functools.py
functoolshttps://docs.python.org/dev/library/functools.html#module-functools
functoolshttps://docs.python.org/dev/library/functools.html#module-functools
https://docs.python.org/dev/library/functools.html#functools.cache
“memoize”https://en.wikipedia.org/wiki/Memoization
lru_cache()https://docs.python.org/dev/library/functools.html#functools.lru_cache
https://docs.python.org/dev/library/functools.html#functools.cached_property
property()https://docs.python.org/dev/library/functions.html#property
cached_property()https://docs.python.org/dev/library/functools.html#functools.cached_property
property()https://docs.python.org/dev/library/functions.html#property
PEP 412https://peps.python.org/pep-0412/
cached_property()https://docs.python.org/dev/library/functools.html#functools.cached_property
property()https://docs.python.org/dev/library/functions.html#property
lru_cache()https://docs.python.org/dev/library/functools.html#functools.lru_cache
How do I cache method calls?https://docs.python.org/dev/faq/programming.html#faq-cache-method-calls
cached_property()https://docs.python.org/dev/library/functools.html#functools.cached_property
https://docs.python.org/dev/library/functools.html#functools.cmp_to_key
key functionhttps://docs.python.org/dev/glossary.html#term-key-function
sorted()https://docs.python.org/dev/library/functions.html#sorted
min()https://docs.python.org/dev/library/functions.html#min
max()https://docs.python.org/dev/library/functions.html#max
heapq.nlargest()https://docs.python.org/dev/library/heapq.html#heapq.nlargest
heapq.nsmallest()https://docs.python.org/dev/library/heapq.html#heapq.nsmallest
itertools.groupby()https://docs.python.org/dev/library/itertools.html#itertools.groupby
Sorting Techniqueshttps://docs.python.org/dev/howto/sorting.html#sortinghowto
https://docs.python.org/dev/library/functools.html#functools.lru_cache
hashablehttps://docs.python.org/dev/glossary.html#term-hashable
dicthttps://docs.python.org/dev/library/stdtypes.html#dict
named tuplehttps://docs.python.org/dev/glossary.html#term-named-tuple
How do I cache method calls?https://docs.python.org/dev/faq/programming.html#faq-cache-method-calls
LRU (least recently used) cachehttps://en.wikipedia.org/wiki/Cache_replacement_policies#Least_Recently_Used_(LRU)
Fibonacci numbershttps://en.wikipedia.org/wiki/Fibonacci_number
dynamic programminghttps://en.wikipedia.org/wiki/Dynamic_programming
https://docs.python.org/dev/library/functools.html#functools.total_ordering
__lt__()https://docs.python.org/dev/reference/datamodel.html#object.__lt__
__le__()https://docs.python.org/dev/reference/datamodel.html#object.__le__
__gt__()https://docs.python.org/dev/reference/datamodel.html#object.__gt__
__ge__()https://docs.python.org/dev/reference/datamodel.html#object.__ge__
__eq__()https://docs.python.org/dev/reference/datamodel.html#object.__eq__
https://docs.python.org/dev/library/functools.html#functools.Placeholder
partial()https://docs.python.org/dev/library/functools.html#functools.partial
partialmethod()https://docs.python.org/dev/library/functools.html#functools.partialmethod
https://docs.python.org/dev/library/functools.html#functools.partial
partial objecthttps://docs.python.org/dev/library/functools.html#partial-objects
partial()https://docs.python.org/dev/library/functools.html#functools.partial
int()https://docs.python.org/dev/library/functions.html#int
Placeholderhttps://docs.python.org/dev/library/functools.html#functools.Placeholder
TypeErrorhttps://docs.python.org/dev/library/exceptions.html#TypeError
Placeholderhttps://docs.python.org/dev/library/functools.html#functools.Placeholder
https://docs.python.org/dev/library/functools.html#functools.partialmethod
partialmethodhttps://docs.python.org/dev/library/functools.html#functools.partialmethod
partialhttps://docs.python.org/dev/library/functools.html#functools.partial
descriptorhttps://docs.python.org/dev/glossary.html#term-descriptor
classmethod()https://docs.python.org/dev/library/functions.html#classmethod
staticmethod()https://docs.python.org/dev/library/functions.html#staticmethod
abstractmethod()https://docs.python.org/dev/library/abc.html#abc.abstractmethod
partialmethodhttps://docs.python.org/dev/library/functools.html#functools.partialmethod
partial objecthttps://docs.python.org/dev/library/functools.html#partial-objects
partialmethodhttps://docs.python.org/dev/library/functools.html#functools.partialmethod
https://docs.python.org/dev/library/functools.html#functools.reduce
itertools.accumulate()https://docs.python.org/dev/library/itertools.html#itertools.accumulate
https://docs.python.org/dev/library/functools.html#functools.singledispatch
single-dispatchhttps://docs.python.org/dev/glossary.html#term-single-dispatch
generic functionhttps://docs.python.org/dev/glossary.html#term-generic-function
typing.Unionhttps://docs.python.org/dev/library/typing.html#typing.Union
lambdashttps://docs.python.org/dev/glossary.html#term-lambda
register()https://docs.python.org/dev/library/functools.html#functools.singledispatch.register
register()https://docs.python.org/dev/library/functools.html#functools.singledispatch.register
picklinghttps://docs.python.org/dev/library/pickle.html#module-pickle
objecthttps://docs.python.org/dev/library/functions.html#object
abstract base classhttps://docs.python.org/dev/glossary.html#term-abstract-base-class
register()https://docs.python.org/dev/library/functools.html#functools.singledispatch.register
register()https://docs.python.org/dev/library/functools.html#functools.singledispatch.register
typing.Unionhttps://docs.python.org/dev/library/typing.html#typing.Union
https://docs.python.org/dev/library/functools.html#functools.singledispatchmethod
single-dispatchhttps://docs.python.org/dev/glossary.html#term-single-dispatch
generic functionhttps://docs.python.org/dev/glossary.html#term-generic-function
@classmethodhttps://docs.python.org/dev/library/functions.html#classmethod
@staticmethodhttps://docs.python.org/dev/library/functions.html#staticmethod
@~abc.abstractmethodhttps://docs.python.org/dev/library/abc.html#abc.abstractmethod
descriptorhttps://docs.python.org/dev/glossary.html#term-descriptor
https://docs.python.org/dev/library/functools.html#functools.update_wrapper
__module__https://docs.python.org/dev/reference/datamodel.html#function.__module__
__name__https://docs.python.org/dev/reference/datamodel.html#function.__name__
__qualname__https://docs.python.org/dev/reference/datamodel.html#function.__qualname__
__annotations__https://docs.python.org/dev/reference/datamodel.html#function.__annotations__
__type_params__https://docs.python.org/dev/reference/datamodel.html#function.__type_params__
__doc__https://docs.python.org/dev/reference/datamodel.html#function.__doc__
__dict__https://docs.python.org/dev/reference/datamodel.html#function.__dict__
lru_cache()https://docs.python.org/dev/library/functools.html#functools.lru_cache
decoratorhttps://docs.python.org/dev/glossary.html#term-decorator
update_wrapper()https://docs.python.org/dev/library/functools.html#functools.update_wrapper
AttributeErrorhttps://docs.python.org/dev/library/exceptions.html#AttributeError
__annotations__https://docs.python.org/dev/reference/datamodel.html#function.__annotations__
AttributeErrorhttps://docs.python.org/dev/library/exceptions.html#AttributeError
bpo-17482https://bugs.python.org/issue?@action=redirect&bpo=17482
__type_params__https://docs.python.org/dev/reference/datamodel.html#function.__type_params__
https://docs.python.org/dev/library/functools.html#functools.wraps
update_wrapper()https://docs.python.org/dev/library/functools.html#functools.update_wrapper
partialhttps://docs.python.org/dev/library/functools.html#functools.partial
https://docs.python.org/dev/library/functools.html#partial-objects
partialhttps://docs.python.org/dev/library/functools.html#functools.partial
partial()https://docs.python.org/dev/library/functools.html#functools.partial
https://docs.python.org/dev/library/functools.html#functools.partial.func
partialhttps://docs.python.org/dev/library/functools.html#functools.partial
funchttps://docs.python.org/dev/library/functools.html#functools.partial.func
https://docs.python.org/dev/library/functools.html#functools.partial.args
partialhttps://docs.python.org/dev/library/functools.html#functools.partial
https://docs.python.org/dev/library/functools.html#functools.partial.keywords
partialhttps://docs.python.org/dev/library/functools.html#functools.partial
partialhttps://docs.python.org/dev/library/functools.html#functools.partial
function objectshttps://docs.python.org/dev/reference/datamodel.html#user-defined-funcs
__name__https://docs.python.org/dev/library/stdtypes.html#definition.__name__
__doc__https://docs.python.org/dev/library/stdtypes.html#definition.__doc__
Table of Contentshttps://docs.python.org/dev/contents.html
functools — Higher-order functions and operations on callable objectshttps://docs.python.org/dev/library/functools.html
partial Objectshttps://docs.python.org/dev/library/functools.html#partial-objects
itertools — Functions creating iterators for efficient loopinghttps://docs.python.org/dev/library/itertools.html
operator — Standard operators as functionshttps://docs.python.org/dev/library/operator.html
Report a bughttps://docs.python.org/dev/bugs.html
Show source https://github.com/python/cpython/blob/main/Doc/library/functools.rst?plain=1
indexhttps://docs.python.org/dev/genindex.html
moduleshttps://docs.python.org/dev/py-modindex.html
nexthttps://docs.python.org/dev/library/operator.html
previoushttps://docs.python.org/dev/library/itertools.html
Pythonhttps://www.python.org/
3.15.0a5 Documentationhttps://docs.python.org/dev/index.html
The Python Standard Libraryhttps://docs.python.org/dev/library/index.html
Functional Programming Moduleshttps://docs.python.org/dev/library/functional.html
functools — Higher-order functions and operations on callable objectshttps://docs.python.org/dev/library/functools.html
Copyrighthttps://docs.python.org/dev/copyright.html
History and Licensehttps://docs.python.org/license.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.