comparison tests/test-propertycache.py @ 28755:84673a7c54af

py3: use absolute_import in test-propertycache.py
author Robert Stanca <robert.stanca7@gmail.com>
date Mon, 04 Apr 2016 03:16:18 +0300
parents 7731a2281cf0
children 61ba04ae6a2f
comparison
equal deleted inserted replaced
28754:7e5744e8334c 28755:84673a7c54af
2 2
3 The repoview overlay is quite complex. We test the behavior of 3 The repoview overlay is quite complex. We test the behavior of
4 property cache of both localrepo and repoview to prevent 4 property cache of both localrepo and repoview to prevent
5 regression.""" 5 regression."""
6 6
7 import os, subprocess 7 from __future__ import absolute_import
8 import os
9 import subprocess
8 import mercurial.localrepo 10 import mercurial.localrepo
9 import mercurial.repoview 11 import mercurial.repoview
10 import mercurial.util 12 import mercurial.util
11 import mercurial.hg 13 import mercurial.hg
12 import mercurial.ui as uimod 14 import mercurial.ui as uimod