[New-bugs-announce] [issue2699] Exception name improperly indented

Brett Cannon report at bugs.python.org
Sun Apr 27 01:17:39 CEST 2008


New submission from Brett Cannon <brett at python.org>:

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

----------
assignee: brett.cannon
components: Interpreter Core
messages: 65855
nosy: brett.cannon
priority: release blocker
severity: normal
status: open
title: Exception name improperly indented
versions: Python 2.6

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue2699>
__________________________________


More information about the New-bugs-announce mailing list