Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
6 lines
220 B
Text
6 lines
220 B
Text
A LRUDict is basically a simple dictionary, which has a defined
|
|
maximum capacity, that may be supplied at construction time, or
|
|
modified at run-time via the capacity property:
|
|
>>> cache = LRUDict(1)
|
|
>>> cache.capacity
|
|
1
|