comparison mercurial/dirstate.py @ 27503:0f4596622273

dirstate: use absolute_import
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 21 Dec 2015 21:38:53 -0800
parents 425dc70037f7
children 714849ba7836
comparison
equal deleted inserted replaced
27502:2df7f5c09c34 27503:0f4596622273
3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> 3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
4 # 4 #
5 # This software may be used and distributed according to the terms of the 5 # This software may be used and distributed according to the terms of the
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 nullid 8 from __future__ import absolute_import
9 from i18n import _ 9
10 import scmutil, util, osutil, parsers, encoding, pathutil, error 10 import errno
11 import os, stat, errno 11 import os
12 import match as matchmod 12 import stat
13
14 from .i18n import _
15 from .node import nullid
16 from . import (
17 encoding,
18 error,
19 match as matchmod,
20 osutil,
21 parsers,
22 pathutil,
23 scmutil,
24 util,
25 )
13 26
14 propertycache = util.propertycache 27 propertycache = util.propertycache
15 filecache = scmutil.filecache 28 filecache = scmutil.filecache
16 _rangemask = 0x7fffffff 29 _rangemask = 0x7fffffff
17 30