1# -*- coding: utf-8 -*- 2# Copyright Gottfried Ganßauge 2006. 3# Distributed under the Boost Software License, Version 1.0. (See 4# accompanying file LICENSE_1_0.txt or copy at 5# http://www.boost.org/LICENSE_1_0.txt) 6 7if __name__ == '__main__': 8 print("running...") 9 10 import crossmod_opaque_a 11 import crossmod_opaque_b 12 13 crossmod_opaque_a.get() 14 crossmod_opaque_b.get() 15 16 print("Done.") 17