Mercurial > hg > config
view python/example/classes.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 | 870af8d51552 |
children |
line wrap: on
line source
#!/usr/bin/env python """ illustrate how classes work """ class A: pass tests = ["issubclass(A(), A)", "issubclass(A, A)"] if __name__ == '__main__': for test in tests: print ("? {}".format(test)) try: print (eval(test)) except Exception as e: print ('{}'.format(repr(e)))