comparison hgext/hbisect.py @ 5731:19691160d7f5

bisect: remove unused imports
author Matt Mackall <mpm@selenic.com>
date Thu, 27 Dec 2007 23:55:39 -0600
parents 1542c4ce729b
children 2060cad9fabd
comparison
equal deleted inserted replaced
5730:1542c4ce729b 5731:19691160d7f5
5 # 5 #
6 # This software may be used and distributed according to the terms 6 # This software may be used and distributed according to the terms
7 # of the GNU General Public License, incorporated herein by reference. 7 # of the GNU General Public License, incorporated herein by reference.
8 8
9 from mercurial.i18n import _ 9 from mercurial.i18n import _
10 from mercurial import hg, util, commands, cmdutil 10 from mercurial import hg, util, cmdutil
11 import os, sys, array 11 import os, array
12 12
13 class bisect(object): 13 class bisect(object):
14 """dichotomic search in the DAG of changesets""" 14 """dichotomic search in the DAG of changesets"""
15 def __init__(self, ui, repo): 15 def __init__(self, ui, repo):
16 self.repo = repo 16 self.repo = repo