Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/cmdutil.py @ 11231:1107888a1ad1
cmdutil: cleanup imports
author | Alexander Solovyov <piranha@piranha.org.ua> |
---|---|
date | Thu, 27 May 2010 22:50:04 +0300 |
parents | 0d09f2244805 |
children | d1908cb95a82 |
comparison
equal
deleted
inserted
replaced
11230:5116a077c3da | 11231:1107888a1ad1 |
---|---|
6 # GNU General Public License version 2 or any later version. | 6 # GNU General Public License version 2 or any later version. |
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, errno, re, glob, tempfile | 10 import os, sys, errno, re, glob, tempfile |
11 import mdiff, bdiff, util, templater, patch, error, encoding, templatekw | 11 import util, templater, patch, error, encoding, templatekw |
12 import match as _match | 12 import match as _match |
13 import similar | 13 import similar |
14 | 14 |
15 revrangesep = ':' | 15 revrangesep = ':' |
16 | 16 |