« Back to Index

[Python Print Parent Class]

View original Gist on GitHub

Tags: #python #class #hierarchy

Python Print Parent Class.py

import tornado.web

class App(tornado.web.Application):
	pass
    
type(App()).__bases__  # (tornado.web.Application,)
type({}).__bases__  # (object,)