On Fri, 2 Mar 2007 16:35:38 -0500, Jim Jewett <[EMAIL PROTECTED]> wrote:
>What is the reasoning behind allowing the raise of a tuple -- but
>really only raising its (recursively) first element?
>

This, basically:


   SomeCondition = (FooException, BarException)
   AnotherCondition = (SomeCondition, BazException)

   try:
      ...
   except SomeCondition, e:
      ...
      raise AnotherCondition

Jean-Paul
_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to