Skip to content

Instantly share code, notes, and snippets.

@nriley
Created June 2, 2009 00:01
Show Gist options
  • Save nriley/121898 to your computer and use it in GitHub Desktop.
Save nriley/121898 to your computer and use it in GitHub Desktop.
>>> class Old: pass
...
>>> type(Old)
<type 'classobj'>
>>> class New(object): pass
...
>>> type(New)
<type 'type'>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment