Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/python/test/crossmod_exception.py @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 416 bytes
Line 
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
5print "running..."
6
7import crossmod_exception_a
8import crossmod_exception_b
9
10try:
11  crossmod_exception_b.tossit()
12except IndexError:
13  pass
14try:
15  crossmod_exception_a.tossit()
16except IndexError:
17  pass
18
19print "Done."
Note: See TracBrowser for help on using the repository browser.