Mercurial > hg
changeset 28562:2b585677220e
contrib: python-hook-examples use absolute_import
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Wed, 16 Mar 2016 04:13:28 +0530 |
parents | 330584235c22 |
children | 62250a48dc7f |
files | contrib/python-hook-examples.py tests/test-check-py3-compat.t |
diffstat | 2 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/python-hook-examples.py Wed Mar 16 04:12:16 2016 +0530 +++ b/contrib/python-hook-examples.py Wed Mar 16 04:13:28 2016 +0530 @@ -1,7 +1,11 @@ ''' Examples of useful python hooks for Mercurial. ''' -from mercurial import patch, util +from __future__ import absolute_import +from mercurial import ( + patch, + util, +) def diffstat(ui, repo, **kwargs): '''Example usage:
--- a/tests/test-check-py3-compat.t Wed Mar 16 04:12:16 2016 +0530 +++ b/tests/test-check-py3-compat.t Wed Mar 16 04:13:28 2016 +0530 @@ -5,7 +5,6 @@ $ hg files 'set:(**.py)' | sed 's|\\|/|g' | xargs python contrib/check-py3-compat.py contrib/import-checker.py not using absolute_import contrib/import-checker.py requires print_function - contrib/python-hook-examples.py not using absolute_import contrib/revsetbenchmarks.py not using absolute_import contrib/revsetbenchmarks.py requires print_function contrib/synthrepo.py not using absolute_import