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 brett.cannon
Recipients brett.cannon
Date 2008-04-26.23:17:34
SpamBayes Score 0.022628594
Marked as misclassified No
Message-id <1209251858.91.0.847250684585.issue2699@psf.upfronthosting.co.za>
In-reply-to
Content
The new warnings implementation tweaks how tracebacks are printed. This 
introduced a bug where the exception name is indented when it shouldn't 
be: e.g., ``raise KeyError`` should look like::

  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
  KeyError

not::

  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
      KeyError
History
Date User Action Args
2008-04-26 23:17:40brett.cannonsetspambayes_score: 0.0226286 -> 0.022628594
recipients: + brett.cannon
2008-04-26 23:17:39brett.cannonsetspambayes_score: 0.0226286 -> 0.0226286
messageid: <1209251858.91.0.847250684585.issue2699@psf.upfronthosting.co.za>
2008-04-26 23:17:36brett.cannonlinkissue2699 messages
2008-04-26 23:17:35brett.cannoncreate