This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo(object): | |
def is_it_a_foo(self, other): | |
print issubclass(Foo, other) | |
Foo().is_it_a_foo(Foo) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> class Old: pass | |
... | |
>>> type(Old) | |
<type 'classobj'> | |
>>> class New(object): pass | |
... | |
>>> type(New) | |
<type 'type'> | |
NewerOlder