]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/python/test/crossmod_opaque.py
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / python / test / crossmod_opaque.py
1 # -*- coding: latin-1 -*-
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
7 if __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.")