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

Skip to content

Commit dce583e

Browse files
committed
Minor beautification.
1 parent d845450 commit dce583e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def __ne__(self, other):
120120
except ImportError:
121121
pass
122122

123-
_CacheInfo = namedtuple("CacheInfo", "hits misses maxsize currsize")
123+
_CacheInfo = namedtuple("CacheInfo", ["hits", "misses", "maxsize", "currsize"])
124124

125125
def lru_cache(maxsize=100, typed=False):
126126
"""Least-recently-used cache decorator.

0 commit comments

Comments
 (0)