diff options
author | Raymond Hettinger <python@rcn.com> | 2014-08-12 19:44:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-08-12 19:44:52 (GMT) |
commit | 4d58897fdb0f123340246fac79174a52d7cbcf85 (patch) | |
tree | 312b779808cbfe4b8ce9d9a9e142e0ccb778cca5 /Lib/functools.py | |
parent | 4d83192ea05f5c14534edbff2b3a74bb19f01068 (diff) | |
download | cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.zip cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.tar.gz cpython-4d58897fdb0f123340246fac79174a52d7cbcf85.tar.bz2 |
Issue 22184: Early detection and reporting of missing lru_cache parameters
Diffstat (limited to 'Lib/functools.py')
-rw-r--r-- | Lib/functools.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/functools.py b/Lib/functools.py index b8463ad..24fdb16 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -392,6 +392,12 @@ def lru_cache(maxsize=128, typed=False): # The internals of the lru_cache are encapsulated for thread safety and # to allow the implementation to change (including a possible C version). + # Early detection of an erroneous call to @lru_cache without any arguments + # resulting in the inner function being passed to maxsize instead of an + # integer or None. + if maxsize is not None and not isinstance(maxsize, int): + raise TypeError('Expected maxsize to be an integer or None') + # Constants shared by all lru cache instances: sentinel = object() # unique object used to signal cache misses make_key = _make_key # build a key from the function arguments |