Skip to content

Instantly share code, notes, and snippets.

@mikeal
Created August 5, 2009 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeal/162920 to your computer and use it in GitHub Desktop.
Save mikeal/162920 to your computer and use it in GitHub Desktop.
class Cache(dict):
lambda get(*args, **kwargs): dict.__getitem__(*args, **kwargs)
lambda set(*args, **kwargs): dict.__setitem__(*args, **kwargs)
lambda del(*args, **kwargs): dict.__delitem__(*args, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment