try: import foo.bar except ImportError: MyBase = foo.bar.Baz else: MyBase = object
class Something(MyBase): -- http://mail.python.org/mailman/listinfo/python-list
try: import foo.bar except ImportError: MyBase = foo.bar.Baz else: MyBase = object
class Something(MyBase): -- http://mail.python.org/mailman/listinfo/python-list