kurt.kaiser wrote:
> Author: kurt.kaiser
> Date: Mon Jul 23 04:35:50 2007
> New Revision: 56501
> 
> Modified:
>    python/branches/p3yk/Lib/traceback.py
> Log:
> Hum, needed a newline in the last change.
> 
> 
> Modified: python/branches/p3yk/Lib/traceback.py
> ==============================================================================
> --- python/branches/p3yk/Lib/traceback.py     (original)
> +++ python/branches/p3yk/Lib/traceback.py     Mon Jul 23 04:35:50 2007
> @@ -193,7 +193,7 @@
>                  # only three spaces to account for offset1 == pos 0
>                  lines.append('   %s^\n' % ''.join(caretspace))
>              value = msg
> -    lines.append("%s: %s" % (stype, str(msg)))
> +    lines.append("%s: %s\n" % (stype, str(msg)))
>      return lines
>  
>  def _format_final_exc_line(etype, value):

This change (or more accurately, the previous checkin affecting this 
line) appears to be the culprit leading to doctest failures in various 
Py3k test modules that check for bad syntax.

Cheers,
Nick.

-- 
Nick Coghlan   |   [EMAIL PROTECTED]   |   Brisbane, Australia
---------------------------------------------------------------
             http://www.boredomandlaziness.org
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to