mercurial/statprof.py
branchstable
changeset 49578 aab3d4c05720
parent 48946 642e31cb55f0
child 49806 9eb69fa5a783
--- a/mercurial/statprof.py	Sun Nov 06 12:15:35 2022 -0500
+++ b/mercurial/statprof.py	Sat Nov 12 02:30:41 2022 +0100
@@ -236,8 +236,8 @@
 
     def getsource(self, length):
         if self.source is None:
-            lineno = self.lineno - 1
             try:
+                lineno = self.lineno - 1  # lineno can be None
                 with open(self.path, b'rb') as fp:
                     for i, line in enumerate(fp):
                         if i == lineno:
@@ -773,7 +773,7 @@
             codestring = codepattern % (
                 prefix,
                 b'line'.rjust(spacing_len),
-                site.lineno,
+                site.lineno if site.lineno is not None else -1,
                 b''.ljust(max(0, 4 - len(str(site.lineno)))),
                 site.getsource(30),
             )