Mercurial > hg
comparison mercurial/hbisect.py @ 20034:1e5b38a919dd
cleanup: move stdlib imports to their own import statement
There are a few warnings still produced by my import checker, but
those are false positives produced by modules that share a name with
stdlib modules.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Wed, 06 Nov 2013 16:48:06 -0500 |
parents | 07771e233cf1 |
children | 1c46b18b0e1c |
comparison
equal
deleted
inserted
replaced
20033:f962870712da | 20034:1e5b38a919dd |
---|---|
6 # Inspired by git bisect, extension skeleton taken from mq.py. | 6 # Inspired by git bisect, extension skeleton taken from mq.py. |
7 # | 7 # |
8 # This software may be used and distributed according to the terms of the | 8 # This software may be used and distributed according to the terms of the |
9 # GNU General Public License version 2 or any later version. | 9 # GNU General Public License version 2 or any later version. |
10 | 10 |
11 import os, error | 11 import os |
12 import error | |
12 from i18n import _ | 13 from i18n import _ |
13 from node import short, hex | 14 from node import short, hex |
14 import util | 15 import util |
15 | 16 |
16 def bisect(changelog, state): | 17 def bisect(changelog, state): |