Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/scmwindows.py @ 27481:029f02757c20
scmwindows: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 21 Dec 2015 21:21:09 -0800 |
parents | adae8928fe09 |
children | 3df9f780c90e |
comparison
equal
deleted
inserted
replaced
27480:509159675cdb | 27481:029f02757c20 |
---|---|
1 from __future__ import absolute_import | |
2 | |
3 import _winreg | |
1 import os | 4 import os |
2 import osutil | 5 |
3 import util | 6 from . import ( |
4 import _winreg | 7 osutil, |
8 util, | |
9 ) | |
5 | 10 |
6 def systemrcpath(): | 11 def systemrcpath(): |
7 '''return default os-specific hgrc search path''' | 12 '''return default os-specific hgrc search path''' |
8 rcpath = [] | 13 rcpath = [] |
9 filename = util.executablepath() | 14 filename = util.executablepath() |