Mercurial > hg-stable
changeset 29311:b76abae75161
py3: make largefiles/overrides.py use absolute_import
author | liscju <piotr.listkiewicz@gmail.com> |
---|---|
date | Tue, 10 May 2016 14:26:36 +0200 |
parents | f89f83c8393a |
children | 29139be0ccc7 |
files | hgext/largefiles/overrides.py tests/test-check-py3-compat.t |
diffstat | 2 files changed, 20 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/largefiles/overrides.py Tue May 10 14:20:51 2016 +0200 +++ b/hgext/largefiles/overrides.py Tue May 10 14:26:36 2016 +0200 @@ -7,17 +7,31 @@ # GNU General Public License version 2 or any later version. '''Overridden Mercurial commands and functions for the largefiles extension''' +from __future__ import absolute_import -import os import copy +import os -from mercurial import hg, util, cmdutil, scmutil, match as match_, \ - archival, pathutil, registrar, revset, error from mercurial.i18n import _ -import lfutil -import lfcommands -import storefactory +from mercurial import ( + archival, + cmdutil, + error, + hg, + match as match_, + pathutil, + registrar, + revset, + scmutil, + util, +) + +from . import ( + lfcommands, + lfutil, + storefactory, +) # -- Utility functions: commonly/repeatedly needed functionality ---------------
--- a/tests/test-check-py3-compat.t Tue May 10 14:20:51 2016 +0200 +++ b/tests/test-check-py3-compat.t Tue May 10 14:26:36 2016 +0200 @@ -10,7 +10,6 @@ hgext/fsmonitor/pywatchman/pybser.py not using absolute_import hgext/highlight/__init__.py not using absolute_import hgext/highlight/highlight.py not using absolute_import - hgext/largefiles/overrides.py not using absolute_import hgext/largefiles/proto.py not using absolute_import hgext/largefiles/remotestore.py not using absolute_import hgext/largefiles/reposetup.py not using absolute_import