We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LRU.__repr__
Hi,
Thanks for fixing cached, now it works great. I've been playing with LRU and there's another small problem:
cached
def __repr__(self): cn = self.__class__.__name__ val_map = super(LRU, self).__repr__() return ('%s(max_size=%r, on_miss=%r, values=%s)' % (cn, self.on_miss, self.max_size, val_map))
has max_size and on_miss reversed.
max_size
on_miss
The text was updated successfully, but these errors were encountered:
bad95b6
No branches or pull requests
Hi,
Thanks for fixing
cached
, now it works great. I've been playing with LRU and there's another small problem:has
max_size
andon_miss
reversed.The text was updated successfully, but these errors were encountered: