Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/cmdutil.py @ 8390:beae42f3d93b
drop unused imports
author | Peter Arrenbrecht <peter.arrenbrecht@gmail.com> |
---|---|
date | Thu, 14 May 2009 15:35:46 +0200 |
parents | 52e6117a9940 |
children | 223000a687b0 |
comparison
equal
deleted
inserted
replaced
8389:4b798b100c32 | 8390:beae42f3d93b |
---|---|
6 # GNU General Public License version 2, incorporated herein by reference. | 6 # GNU General Public License version 2, incorporated herein by reference. |
7 | 7 |
8 from node import hex, nullid, nullrev, short | 8 from node import hex, nullid, nullrev, short |
9 from i18n import _ | 9 from i18n import _ |
10 import os, sys, bisect, stat, errno | 10 import os, sys, bisect, stat, errno |
11 import mdiff, bdiff, util, templater, templatefilters, patch, error, encoding | 11 import mdiff, bdiff, util, templater, patch, error, encoding |
12 import match as _match | 12 import match as _match |
13 | 13 |
14 revrangesep = ':' | 14 revrangesep = ':' |
15 | 15 |
16 def findpossible(cmd, table, strict=False): | 16 def findpossible(cmd, table, strict=False): |