This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author doerwalter
Recipients
Date 2003-05-13.07:01:39
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=89016

I we had exception chaining (i.e. each exception can
reference another exception, that is the cause for this
one), this would just be a special case. A traceback could
then look like this:

>>> map(float, [0, 1, None, 3])
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
TypeError: in entry None at position 2
Caused by:
TypeError: float() argument must be a string or a number
History
Date User Action Args
2007-08-23 16:01:22adminlinkissue447143 messages
2007-08-23 16:01:22admincreate