Mercurial > hg > config
view python/example/classes.py @ 815:06f1c3de040c
k8s is picky about how many dashes a deployment may have
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 13 Nov 2016 16:02:30 -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)))