Skip to content

Instantly share code, notes, and snippets.

View nriley's full-sized avatar

Nicholas Riley nriley

View GitHub Profile
class Foo(object):
def is_it_a_foo(self, other):
print issubclass(Foo, other)
Foo().is_it_a_foo(Foo)
>>> class Old: pass
...
>>> type(Old)
<type 'classobj'>
>>> class New(object): pass
...
>>> type(New)
<type 'type'>