crossmod_exception.py 418 B

12345678910111213141516171819
  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. print("running...")
  5. import crossmod_exception_a
  6. import crossmod_exception_b
  7. try:
  8. crossmod_exception_b.tossit()
  9. except IndexError:
  10. pass
  11. try:
  12. crossmod_exception_a.tossit()
  13. except IndexError:
  14. pass
  15. print("Done.")