Mercurial > public > mercurial-scm > hg
comparison mercurial/pathutil.py @ 25964:d740df4e96cf
pathutil: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 08 Aug 2015 19:45:15 -0700 |
parents | 328739ea70c3 |
children | 56b2bcea2529 |
comparison
equal
deleted
inserted
replaced
25963:7448df709b2e | 25964:d740df4e96cf |
---|---|
1 import os, errno, stat, posixpath | 1 from __future__ import absolute_import |
2 | 2 |
3 import encoding | 3 import errno |
4 import util | 4 import os |
5 from i18n import _ | 5 import posixpath |
6 import stat | |
7 | |
8 from .i18n import _ | |
9 from . import ( | |
10 encoding, | |
11 util, | |
12 ) | |
6 | 13 |
7 def _lowerclean(s): | 14 def _lowerclean(s): |
8 return encoding.hfsignoreclean(s.lower()) | 15 return encoding.hfsignoreclean(s.lower()) |
9 | 16 |
10 class pathauditor(object): | 17 class pathauditor(object): |