comparison hgext/eol.py @ 12062:c327bfa5e831

cleanup: remove unused imports
author Brodie Rao <brodie@bitheap.org>
date Fri, 27 Aug 2010 13:32:38 -0400
parents 0bb67503ad4b
children 2ae4d6c31dcc
comparison
equal deleted inserted replaced
12061:f7557345b199 12062:c327bfa5e831
64 See :hg:`help patterns` for more information about the glob patterns 64 See :hg:`help patterns` for more information about the glob patterns
65 used. 65 used.
66 """ 66 """
67 67
68 from mercurial.i18n import _ 68 from mercurial.i18n import _
69 from mercurial import util, config, extensions, commands, match, cmdutil 69 from mercurial import util, config, extensions, match
70 import re, os 70 import re, os
71 71
72 # Matches a lone LF, i.e., one that is not part of CRLF. 72 # Matches a lone LF, i.e., one that is not part of CRLF.
73 singlelf = re.compile('(^|[^\r])\n') 73 singlelf = re.compile('(^|[^\r])\n')
74 # Matches a single EOL which can either be a CRLF where repeated CR 74 # Matches a single EOL which can either be a CRLF where repeated CR