Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/python/test/crossmod_exception.py @ 12

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

added boost

  • Property svn:executable set to *
File size: 533 bytes
Line 
1# Copyright (C) 2003 Rational Discovery LLC
2# Permission to copy, use, modify, sell and distribute this software
3# is granted provided this copyright notice appears in all
4# copies. This software is provided "as is" without express or
5# implied warranty, and with no claim as to its suitability for any
6# purpose.
7
8print "running..."
9
10import crossmod_exception_a
11import crossmod_exception_b
12
13try:
14  crossmod_exception_b.tossit()
15except IndexError:
16  pass
17try:
18  crossmod_exception_a.tossit()
19except IndexError:
20  pass
21
22print "Done."
Note: See TracBrowser for help on using the repository browser.