Skip to content

Instantly share code, notes, and snippets.

@mattrobenolt
Created August 7, 2012 16:49
Show Gist options
  • Save mattrobenolt/3287225 to your computer and use it in GitHub Desktop.
Save mattrobenolt/3287225 to your computer and use it in GitHub Desktop.
class Logger(type):
def __new__(cls, name, bases, crap):
print cls, name, bases, crap
class foo(dict):
__metaclass__ = Logger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment