statprof: clarify by naming tuple members while enumerate()'ing
authorMartin von Zweigbergk <martinvonz@google.com>
Fri, 30 Aug 2019 15:12:37 -0700
changeset 42833 3f81d58aae25
parent 42832 a3c2ffcd266f
child 42834 c085cb134b9e
statprof: clarify by naming tuple members while enumerate()'ing Differential Revision: https://phab.mercurial-scm.org/D6778
mercurial/statprof.py
--- a/mercurial/statprof.py	Mon Aug 05 17:25:24 2019 +0200
+++ b/mercurial/statprof.py	Fri Aug 30 15:12:37 2019 -0700
@@ -878,7 +878,8 @@
         laststack = collections.deque(stack)
     while laststack:
         poplast()
-    events = [s[1] for s in enumerate(samples) if s[0] not in blacklist]
+    events = [sample for idx, sample in enumerate(samples)
+              if idx not in blacklist]
     frames = collections.OrderedDict((str(k), v)
                                      for (k,v) in enumerate(id2stack))
     json.dump(dict(traceEvents=events, stackFrames=frames), fp, indent=1)