]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/python/test/crossmod_exception.py
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / python / test / crossmod_exception.py
1 # Copyright (C) 2003 Rational Discovery LLC. Distributed under the Boost
2 # Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy
3 # at http://www.boost.org/LICENSE_1_0.txt)
4
5 print("running...")
6
7 import crossmod_exception_a
8 import crossmod_exception_b
9
10 try:
11 crossmod_exception_b.tossit()
12 except IndexError:
13 pass
14 try:
15 crossmod_exception_a.tossit()
16 except IndexError:
17 pass
18
19 print("Done.")