deep search for inheritors in python

This commit is contained in:
Dmitry Jemerov
2008-03-24 17:49:07 +03:00
parent dc5a91cf12
commit 495fb1b43e
5 changed files with 39 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
class A(object):
pass
class B(A):
pass
class C(B):
pass