Skip to content

Instantly share code, notes, and snippets.

@Drvanon
Created July 9, 2012 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Drvanon/3077030 to your computer and use it in GitHub Desktop.
Save Drvanon/3077030 to your computer and use it in GitHub Desktop.
subclassing
class Material(object):
self.material = True
def build_with(self):
del self
class Organic(Material):
self.organic = True
class Metal(Material):
self.organic = False
class Iron(Metal):
self.hardness = 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment