[pypy-commit] jitviewer default: use the standard filename:lineno notation

antocuni noreply at buildbot.pypy.org
Thu Nov 29 12:21:03 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r206:d6029f3ae6c8
Date: 2012-11-29 11:20 +0000
http://bitbucket.org/pypy/jitviewer/changeset/d6029f3ae6c8/

Log:	use the standard filename:lineno notation

diff --git a/_jitviewer/app.py b/_jitviewer/app.py
--- a/_jitviewer/app.py
+++ b/_jitviewer/app.py
@@ -147,7 +147,7 @@
                                                       loop.startlineno)))
                 loop = loop.chunks[int(e)]
                 path_so_far.append(e)
-        callstack.append((','.join(path_so_far), '%s in %s at %d' % (loop.name,
+        callstack.append((','.join(path_so_far), '%s in %s:%d' % (loop.name,
                                         loop.filename, loop.startlineno)))
 
         if not loop.has_valid_code() or loop.filename is None:


More information about the pypy-commit mailing list