Skip to content

Instantly share code, notes, and snippets.

@miloir
Created March 25, 2012 14:16
Show Gist options
  • Save miloir/2195378 to your computer and use it in GitHub Desktop.
Save miloir/2195378 to your computer and use it in GitHub Desktop.
Python Inheritance: Easy Mode Short Tutorial 1 code
class MyDict(dict):
def __init__(self, *args, **kwargs):
dict.__init__(self, *args, **kwargs)
def get(self, key, default=None):
print "getting key: %s" % key
return super(MyDict, self).get(key, default=default)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment