Skip to content
Snippets Groups Projects
Commit bf3f9e43 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Little tweaks to comment in decorator

parent 5bf3ed18
No related branches found
No related tags found
No related merge requests found
......@@ -383,8 +383,10 @@ def limitedMemoize(maxSize):
# remove the oldest item. In practice
# it would make more sense to remove
# the item with the oldest access
# time, but this is good enough for
# an introduction!
# time (or remove the least recently
# used item, as the built-in
# @functools.lru_cache does), but this
# is good enough for now!
if len(cache) >= maxSize:
cache.popitem(last=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment