Traceback (most recent call last):
File "/home/cfbolz/projects/cpython/functoolserror.py", line 5, in <module>
functools.lru_cache()(1)
~~~~~~~~~~~~~~~~~~~~~^^^
File "/home/cfbolz/projects/cpython/Lib/functools.py", line 598, in decorating_function
wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo)
TypeError: the first argument must be callable
I think this should simply be fixed in the Python implementation and will prepare a patch.
Bug report
Bug description:
The C implementation of
functools.lru_cachechecks whether its argument is callable and raises an exception if not. The Python version does not do that:without blocking the import of
_functoolsyou get:I think this should simply be fixed in the Python implementation and will prepare a patch.
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux
Linked PRs