mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
merge
This commit is contained in:
commit
c28dbd0452
3 changed files with 20 additions and 2 deletions
|
@ -574,14 +574,16 @@ def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo):
|
||||||
last = root[PREV]
|
last = root[PREV]
|
||||||
link = [last, root, key, result]
|
link = [last, root, key, result]
|
||||||
last[NEXT] = root[PREV] = cache[key] = link
|
last[NEXT] = root[PREV] = cache[key] = link
|
||||||
full = (len(cache) >= maxsize)
|
# Use the __len__() method instead of the len() function
|
||||||
|
# which could potentially be wrapped in an lru_cache itself.
|
||||||
|
full = (cache.__len__() >= maxsize)
|
||||||
misses += 1
|
misses += 1
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def cache_info():
|
def cache_info():
|
||||||
"""Report cache statistics"""
|
"""Report cache statistics"""
|
||||||
with lock:
|
with lock:
|
||||||
return _CacheInfo(hits, misses, maxsize, len(cache))
|
return _CacheInfo(hits, misses, maxsize, cache.__len__())
|
||||||
|
|
||||||
def cache_clear():
|
def cache_clear():
|
||||||
"""Clear the cache and cache statistics"""
|
"""Clear the cache and cache statistics"""
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import abc
|
import abc
|
||||||
|
import builtins
|
||||||
import collections
|
import collections
|
||||||
import copy
|
import copy
|
||||||
from itertools import permutations
|
from itertools import permutations
|
||||||
|
@ -1189,6 +1190,18 @@ class TestLRU:
|
||||||
self.assertEqual(misses, 4)
|
self.assertEqual(misses, 4)
|
||||||
self.assertEqual(currsize, 2)
|
self.assertEqual(currsize, 2)
|
||||||
|
|
||||||
|
def test_lru_reentrancy_with_len(self):
|
||||||
|
# Test to make sure the LRU cache code isn't thrown-off by
|
||||||
|
# caching the built-in len() function. Since len() can be
|
||||||
|
# cached, we shouldn't use it inside the lru code itself.
|
||||||
|
old_len = builtins.len
|
||||||
|
try:
|
||||||
|
builtins.len = self.module.lru_cache(4)(len)
|
||||||
|
for i in [0, 0, 1, 2, 3, 3, 4, 5, 6, 1, 7, 2, 1]:
|
||||||
|
self.assertEqual(len('abcdefghijklmn'[:i]), i)
|
||||||
|
finally:
|
||||||
|
builtins.len = old_len
|
||||||
|
|
||||||
def test_lru_type_error(self):
|
def test_lru_type_error(self):
|
||||||
# Regression test for issue #28653.
|
# Regression test for issue #28653.
|
||||||
# lru_cache was leaking when one of the arguments
|
# lru_cache was leaking when one of the arguments
|
||||||
|
|
|
@ -14,6 +14,9 @@ Core and Builtins
|
||||||
to/from UTF-8, instead of the locale encoding to avoid inconsistencies with
|
to/from UTF-8, instead of the locale encoding to avoid inconsistencies with
|
||||||
os.fsencode() and os.fsdecode() which are already using UTF-8.
|
os.fsencode() and os.fsdecode() which are already using UTF-8.
|
||||||
|
|
||||||
|
- Issue #28991: functools.lru_cache() was susceptible to an obscure $
|
||||||
|
bug triggerable by a monkey-patched len() function.
|
||||||
|
|
||||||
- Issue #28147: Fix a memory leak in split-table dictionaries: setattr()
|
- Issue #28147: Fix a memory leak in split-table dictionaries: setattr()
|
||||||
must not convert combined table into split table. Patch written by INADA
|
must not convert combined table into split table. Patch written by INADA
|
||||||
Naoki.
|
Naoki.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue