mq: refactor usage of repo.branchmap().iteritems() with itervalues()
authorBrodie Rao <brodie@sf.io>
Mon, 01 Apr 2013 20:01:16 -0700
changeset 19916 fb583a1efef0
parent 19915 1989111687a3
child 19917 cff331cbb5ee
mq: refactor usage of repo.branchmap().iteritems() with itervalues()
hgext/mq.py
--- a/hgext/mq.py	Sat Oct 19 14:21:05 2013 -0700
+++ b/hgext/mq.py	Mon Apr 01 20:01:16 2013 -0700
@@ -1204,9 +1204,7 @@
         diffopts = self.diffopts()
         wlock = repo.wlock()
         try:
-            heads = []
-            for b, ls in repo.branchmap().iteritems():
-                heads += ls
+            heads = [h for hs in repo.branchmap().itervalues() for h in hs]
             if not heads:
                 heads = [nullid]
             if repo.dirstate.p1() not in heads and not exact: