2013-07-18から1日間の記事一覧

継承関係を図にする

#!/usr/bin/env python # -*- coding: utf-8 -*- def classtree(cls, indent): print '.'*indent, cls.__name__ for supercls in cls.__bases__: classtree(supercls, indent+3) def instancetree(inst): print 'Tree of', inst classtree(inst.__class__, 3…