[pypy-commit] pypy default: if we don't know it's -1

fijal noreply at buildbot.pypy.org
Tue Jun 26 22:16:51 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r55849:49b1e77bc6a5
Date: 2012-06-26 16:02 +0200
http://bitbucket.org/pypy/pypy/changeset/49b1e77bc6a5/

Log:	if we don't know it's -1

diff --git a/pypy/tool/jitlogparser/parser.py b/pypy/tool/jitlogparser/parser.py
--- a/pypy/tool/jitlogparser/parser.py
+++ b/pypy/tool/jitlogparser/parser.py
@@ -7,7 +7,7 @@
 
 def parse_code_data(arg):
     name = None
-    lineno = 0
+    lineno = -1
     filename = None
     bytecode_no = 0
     bytecode_name = None


More information about the pypy-commit mailing list