Mercurial > public > mercurial-scm > hg
diff tests/test-walkrepo.py @ 27300:a8b2bf520a2a
tests: use absolute_import in test-walkrepo
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sun, 06 Dec 2015 22:05:19 -0800 |
parents | fad896292e7d |
children | a4803f35efba |
line wrap: on
line diff
--- a/tests/test-walkrepo.py Sun Dec 06 22:27:53 2015 -0800 +++ b/tests/test-walkrepo.py Sun Dec 06 22:05:19 2015 -0800 @@ -1,9 +1,20 @@ +from __future__ import absolute_import + import os -from mercurial import hg, ui -from mercurial.scmutil import walkrepos -from mercurial.util import checklink -from os import mkdir, chdir -from os.path import join as pjoin + +from mercurial import ( + hg, + scmutil, + ui, + util, +) + +chdir = os.chdir +mkdir = os.mkdir +pjoin = os.path.join + +walkrepos = scmutil.walkrepos +checklink = util.checklink u = ui.ui() sym = checklink('.')