blob: a1e95dc23a67c1cafbf3d2eac5d843c4b388d26d [file] [log] [blame]
###############################################################################
# Copyright (c) 2005, 2007 IBM Corporation and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License v. 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0.
#
# SPDX-License-Identifier: EPL-2.0
#
###############################################################################
import _utils
class A:
def __init__( self ):
pass
def c(self):
pass
class B( A ):
def __init__( self ):
A.__init__( self )
pass
class D( B ):
def __init__( self ):
B.__init__( self )
pass
a = A() ; _utils.out( "a", a )
b = B() ; _utils.out( "b", b )
d = D() ; _utils.out( "d", d )