At the C level, tuple arguments are passed in directly to the exception
commitdb4e6a78b8dda875e100b3ea81cf9d4a1b4e6544
authorbrett.cannon <brett.cannon@6015fed2-1504-0410-9fe1-9d1591cc4771>
Wed, 21 Jun 2006 16:57:57 +0000 (21 16:57 +0000)
committerbrett.cannon <brett.cannon@6015fed2-1504-0410-9fe1-9d1591cc4771>
Wed, 21 Jun 2006 16:57:57 +0000 (21 16:57 +0000)
tree3f8fb24fb9c66476973a7bec634c404f6a12c0dd
parent9adabe6d20e3b7c4e448cfe04245dd2ebb20bdbc
At the C level, tuple arguments are passed in directly to the exception
constructor, meaning it is treated as *args, not as a single argument.  This
means using the 'message' attribute won't work (until Py3K comes around),
and so one must grab from 'arg' to get the error number.

git-svn-id: http://svn.python.org/projects/python/trunk@47053 6015fed2-1504-0410-9fe1-9d1591cc4771
Lib/test/test_socket_ssl.py