Mercurial > hg > config
view python/example/subclass.py @ 760:d0b975ffabdf
http://serverfault.com/questions/132055/how-to-check-if-emacs-is-in-gui-mode-and-execute-tool-bar-mode-only-then
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 15 Dec 2015 12:32:34 -0800 |
parents | ae7e75a8cdb0 |
children |
line wrap: on
line source
import string from pprint import pprint class Foo: pass class Bar(Foo): pass fleem = 1 mystuff = {i:j for i, j in globals().items()} types = {i:type(j) for i, j in globals().items()} mynewstuff = {i:j for i, j in mystuff.items() if (type(j) == type(Foo)) and issubclass(j, Foo)} pprint(mynewstuff)