Jean-Paul Calderone wrote: > 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 > > SomeCondition = (FooException, BarException) > AnotherCondition = (SomeCondition, BazException) > > except SomeCondition, e: > ... > raise AnotherCondition
So it was some sort of workaround for exceptions not being classes? If so, it sounds like we don't need it any more. -- Greg _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
