We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a28c55a + d8d6010 commit 36fe228Copy full SHA for 36fe228
1 file changed
Lib/functools.py
@@ -266,7 +266,7 @@ def wrapper(*args, **kwds):
266
elif maxsize is None:
267
268
def wrapper(*args, **kwds):
269
- # simple caching without ordering or size limit
+ # Simple caching without ordering or size limit
270
nonlocal hits, misses
271
key = make_key(args, kwds, typed)
272
result = cache_get(key, sentinel)
@@ -281,7 +281,7 @@ def wrapper(*args, **kwds):
281
else:
282
283
284
- # size limited caching that tracks accesses by recency
+ # Size limited caching that tracks accesses by recency
285
nonlocal root, hits, misses, full
286
287
with lock:
0 commit comments