blob: 5b8a38f09168f9d5fb19cd1c868633f903feb2d4 [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
import pkg.pkg2.module
# will import pkg.__init__.py
# will import pkg.pkg2.__init__.py
# will import pkg.pkg2.module
i1 = pkg.pkg2.module.module_val ;_utils.out( "i1", i1 )
i2 = pkg.pkg2.b ;_utils.out( "i2", i2 )
i3 = pkg.a ;_utils.out( "i3", i3 )