# HG changeset patch # User Matt Mackall # Date 1198821339 21600 # Node ID 19691160d7f56c6bbaf4f28d91cdb0fb2cbb6368 # Parent 1542c4ce729b0c077775e437916a96c91728e15c bisect: remove unused imports diff -r 1542c4ce729b -r 19691160d7f5 hgext/hbisect.py --- a/hgext/hbisect.py Thu Dec 27 23:55:39 2007 -0600 +++ b/hgext/hbisect.py Thu Dec 27 23:55:39 2007 -0600 @@ -7,8 +7,8 @@ # of the GNU General Public License, incorporated herein by reference. from mercurial.i18n import _ -from mercurial import hg, util, commands, cmdutil -import os, sys, array +from mercurial import hg, util, cmdutil +import os, array class bisect(object): """dichotomic search in the DAG of changesets"""