mercurial/hbisect.py
changeset 16834 cafd8a8fb713
parent 16803 107a3270a24a
child 17424 e7cfe3587ea4
child 17493 d057e92dadfc
--- a/mercurial/hbisect.py	Sat Jun 02 15:35:53 2012 -0500
+++ b/mercurial/hbisect.py	Fri Jun 01 17:05:31 2012 -0700
@@ -11,7 +11,7 @@
 import os, error
 from i18n import _
 from node import short, hex
-import collections, util
+import util
 
 def bisect(changelog, state):
     """find the next node (if any) for testing during a bisect search.
@@ -69,7 +69,7 @@
 
     # build children dict
     children = {}
-    visit = collections.deque([badrev])
+    visit = util.deque([badrev])
     candidates = []
     while visit:
         rev = visit.popleft()