Author: Edd Barrett <vex...@gmail.com> Branch: nobold-backtrace Changeset: r66375:bf45de26fd1d Date: 2013-08-27 17:24 +0100 http://bitbucket.org/pypy/pypy/changeset/bf45de26fd1d/
Log: Make 'blocked block' errors look like the other errors. diff --git a/rpython/tool/error.py b/rpython/tool/error.py --- a/rpython/tool/error.py +++ b/rpython/tool/error.py @@ -90,7 +90,7 @@ format_simple_call(annotator, oper, msg) else: oper = None - msg.append(" " + str(oper)) + msg.append(" %s\n" % str(oper)) msg += source_lines(graph, block, operindex, long=True) if oper is not None: if SHOW_ANNOTATIONS: @@ -106,7 +106,7 @@ def format_blocked_annotation_error(annotator, blocked_blocks): text = [] for block, (graph, index) in blocked_blocks.items(): - text.append('-+' * 30) + text.append('\n') text.append("Blocked block -- operation cannot succeed") text.append(gather_error(annotator, graph, block, index)) return '\n'.join(text) _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit