diff hgext/rebase.py @ 8163:62d7287fe6b0

rebase, revlog: use set(x) instead of set(x.keys()) The latter is both unnecessary and slower.
author Martin Geisler <mg@lazybytes.net>
date Sat, 25 Apr 2009 22:25:49 +0200
parents bbc24c0753a0
children a1a5a57efe90
line wrap: on
line diff
--- a/hgext/rebase.py	Wed Apr 15 10:33:58 2009 -0500
+++ b/hgext/rebase.py	Sat Apr 25 22:25:49 2009 +0200
@@ -128,8 +128,7 @@
 
         if not keepf:
             # Remove no more useful revisions
-            if (set(repo.changelog.descendants(min(state)))
-                                                    - set(state.keys())):
+            if set(repo.changelog.descendants(min(state))) - set(state):
                 ui.warn(_("warning: new changesets detected on source branch, "
                                                         "not stripping\n"))
             else: