Changeset 1728:f0d526af5686 for ftputil/lrucache.py
- Timestamp:
- Dec 26, 2018, 8:33:02 PM (2 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ftputil/lrucache.py
r1727 r1728 48 48 # The suffix after the hyphen denotes modifications by the 49 49 # ftputil project with respect to the original version. 50 __version__ = "0.2-1 3"50 __version__ = "0.2-14" 51 51 __all__ = ['CacheKeyError', 'LRUCache', 'DEFAULT_SIZE'] 52 52 __docformat__ = 'reStructuredText en' … … 73 73 74 74 75 class LRUCache (object):75 class LRUCache: 76 76 """Least-Recently-Used (LRU) cache. 77 77 … … 113 113 """ 114 114 115 class _Node (object):115 class _Node: 116 116 """Record of a cached value. Not for public consumption.""" 117 117
Note: See TracChangeset
for help on using the changeset viewer.