view python/example/classes.py @ 767:35f8751c0930

it is very annoying to have ones overrides overridden; see also http://stackoverflow.com/questions/25381304/why-type-cd-on-mac-os-states-that-cd-is-a-function
author Jeff Hammel <k0scist@gmail.com>
date Thu, 28 Jan 2016 14:02:17 -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)))