view python/example/classes.py @ 783:d564f7ad8294

this now works again, and without docker-machine; ephermal testing for now, ephemeral testing forever
author Jeff Hammel <k0scist@gmail.com>
date Wed, 24 Aug 2016 14:39:51 -0700
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)))