Skip to content

Instantly share code, notes, and snippets.

@smarnach
Created March 28, 2012 20:14
Show Gist options
  • Select an option

  • Save smarnach/2230130 to your computer and use it in GitHub Desktop.

Select an option

Save smarnach/2230130 to your computer and use it in GitHub Desktop.
class MyRECache(dict):
def __missing__(self, regex):
return self.setdefault(regex, re.compile(regex))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment