Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 36fe228

Browse files
committed
merge
2 parents a28c55a + d8d6010 commit 36fe228

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/functools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def wrapper(*args, **kwds):
266266
elif maxsize is None:
267267

268268
def wrapper(*args, **kwds):
269-
# simple caching without ordering or size limit
269+
# Simple caching without ordering or size limit
270270
nonlocal hits, misses
271271
key = make_key(args, kwds, typed)
272272
result = cache_get(key, sentinel)
@@ -281,7 +281,7 @@ def wrapper(*args, **kwds):
281281
else:
282282

283283
def wrapper(*args, **kwds):
284-
# size limited caching that tracks accesses by recency
284+
# Size limited caching that tracks accesses by recency
285285
nonlocal root, hits, misses, full
286286
key = make_key(args, kwds, typed)
287287
with lock:

0 commit comments

Comments
 (0)